@media (min-width: 900px) {
    .about_body_wide {
        white-space: pre;
        margin-bottom: 10px;
        font-size: min(1.3vw, 15pt);
        line-height: 1;
        text-align: center;
        position: relative;
    }
}

@media (max-width: 899px) {
    .about_body_wide {
        white-space: pre;
        margin-bottom: 10px;
        font-size: 0vw;
        line-height: 1;
        text-align: center;
        position: relative;
    }
}


@media (max-width: 899px) {
    .about_body_narrow {
        white-space: pre;
        margin-bottom: 10px;
        font-size: min(2.15vw, 10pt);
        line-height: 1;
        text-align: center;
        position: relative;
    }
}

@media (min-width: 900px) {
    .about_body_narrow {
        white-space: pre;
        margin-bottom: 10px;
        font-size: 0vw;
        line-height: 1;
        text-align: center;
        position: relative;
    }
}

.typewriter {
    display: inline-block;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid #207733; /* The typewriter cursor */
    white-space: nowrap; /* Prevents text from wrapping */
    position: absolute; /* Removes it from the document flow */
    left: 50%; /* Center the effect */
    transform: translateX(-50%); /* Adjust position for centering */
    animation: typing 1.5s steps(40, end), blink-caret .75s step-end infinite, hide-caret 0s 6s forwards;
    width: 9ch; /* Set a fixed width for the animation duration */
    
}

@keyframes typing {
    from { width: 0; }
    to { width: 9ch; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #207733; }
}

@keyframes hide-caret {
    0% { border-color: #207733; }
    100% { border-color: transparent; }
}

.Sneaky a {
    color: #fff;
    text-decoration: none;
}

.Sneaky a:hover {
    color: #fff;
    text-decoration: none;
    cursor: text;
}