.container {
    margin: auto;
    max-width: 960px;
    padding: 2rem;
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 0px;
    /* height: 50vh; */
}
    .hero h1 {
        line-height: 90%
    }
    .hero * {
        margin: 0px
    }
    
    .ascii-art {
        line-height: 0.70
    }
    
    #desktop-hero {
        display: block;
    }
    #mobile-hero {
        display: none;
    }
    
    
    @media (max-width: 768px) {
        #desktop-hero {
            display: none;
        }
        #mobile-hero {
            display: block;
        }
    }
    
    
.type-tester {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 2rem 0rem;
}
    .sample-controls {
        gap: 2rem;
    }
    @media (max-width: 768px) {
        .letter-spacing-slider,
        .case-toggle {
            display: none;
        }      
    }
    
    .editable:focus {
        outline: none
    }
    .sample-text {
        font-size: 12rem;
    }

.character-grid {
    font-size: 2.5rem;
    letter-spacing: 1em;
    line-height: 2em;
    word-break: break-all;
    max-width: none;
}

.languages {
    list-style: none;
    padding-left: 0px;
    columns: 12em auto;
    
    font-size: 1rem;
    line-height: 140%;
    text-transform: uppercase;
}

.fine-print {
    padding-top: 6rem;
}
    .fine-print * {
        font-size: 1rem;
    }


footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #666
}

    footer * {
        margin: 0px;
        font-size: 1rem;
    }