body {
    background-color: black;
    color: white;
    overflow: hidden;
    margin: 0;
}

* {
    flex-direction: column;
    color: white;
}

.wrap {
    display: flex;
    height: 100%;
    width: 100%;
    margin: auto;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

::selection {
    color: black;
    background: yellow;
}

a {
    text-decoration: none;
}

.ascii {
    font-family: monospace;
    font-size: clamp(0.1em, 1.5vw, 5em);
    white-space: pre;
    text-align: left;
    user-select: none;
    width: auto;
    height: auto;
}

@media only screen and (min-width: 768px) {
    .ascii {
        font-size: clamp(1em, 2vw, 5em);
        width: auto;
    }
}
