html {

}
::-webkit-scrollbar {
    width: none;
    display: none;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.navigation.show-nav-info {
    border-color: indianred;
    border-style: dashed;
}

.nav-info {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s ease;
    color: indianred;
    font-size: 0.85em;
    font-weight: 900;
}

.navigation.show-nav-info .nav-info {
    opacity: 1;
}

.content {
    margin-top: 5%;

    font-family: "Visby";
}

.content .about {
    min-height: 300px;
    width: 100%;
}

.content .about > p {
    margin-top: 0;
    letter-spacing: 5%;
    line-height: 150%;
    text-align: justify;
    text-align-last: left;
}

.ascii-pfp {
    opacity: .5;
    cursor: default;
    margin: auto auto;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60%;
    max-width: 500px;
    aspect-ratio: 1/1;

    border-radius: 100%;
    border: 1px solid rgba(127, 127, 127, .3);

    overflow: hidden;

    z-index: -1000;
}
.ascii-pfp .ascii {

    max-width: 100%;
    width: auto;
    display: inline-block;
    box-sizing: border-box;
    white-space: pre;
}

.ascii-scale-wrapper {
    display: inline-block;
    overflow: hidden;
}

.ascii-pfp .ascii {
    transform-origin: left top;
    will-change: transform;
    font-family: 'Consolas','BitstreamVeraSansMono','Courier New',Courier,monospace;
}

/* ----MOBILE VIEW---- */
@media only screen and (max-width: 767px) {
    .content {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ascii-pfp {
        position: absolute;
        left: 50%;
        width: 100vw;
        box-sizing: border-box;
        transform: translate(-50%);
    }
}

