@font-face {
    font-family: 'Caveat';
    font-style: normal;
    font-weight: 100 900;
    src: url("static/fonts/caveat.woff2") format('woff2-variations');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    box-sizing: border-box;
}

body {
    background-color: #3E3D3D;
    background: linear-gradient(0deg, rgba(48, 48, 48, 1) 0%, rgba(62, 61, 61, 1) 100%);
    color: #F5F5F5;
    display: flex;
    flex-direction: column;
    font-family: 'Caveat', serif;
    font-size: 44px;
    justify-content: flex-start;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    padding: 0;
}


#landing {
    background-color: #3E3D3D;
    background-image: url("static/img/bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    border-radius: 12px;
    margin: 12px;
}

#landing-text {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 0.5;
    justify-content: center;
    text-align: center;
}