html, body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;      /* ADD: ensures body fills the viewport height */
    display: flex;          /* ADD: enables flexbox centering */
    align-items: center;    /* ADD: centers vertically */
    justify-content: center;/* A    DD: centers horizontally */
}

.splash{
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    font-size: clamp(1em, 10vw, 5em);
    /*white-space: nowrap;*/
    /*max-width: fit-content;*/
    bottom: 30px;
    margin: 0 5%;
}

#gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
