html{
    background-color:  #0C1A22;
    text-align: center;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 62.5%;
    margin: 0;
    box-sizing: border-box;
}
#app{
    height: 100vh;
    padding: auto 50px;
}
#logo-wrapper{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 200px;
    margin-bottom: 100px;
    width: fit-content;
    max-width: 700px;
    width: 90%;
}
#logo{
    margin: 0;
    max-width: 90%;
}


.parallax{
    height: 100%;
    width: 100%;
    position:absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content:space-between
}
.letter-wrapper{
    height: 100%;
    width: auto;
    position: relative;
}

.letter{
    height: 100%;
    width: 100%;
    position: relative;
    top: 100;
}

#teaser{

    font-style: italic;
    font-weight:lighter;
    font-size: 4rem;
    text-align: center;
    /* identical to box height */

    background: linear-gradient(90deg, #FFFFFF , rgba(206, 203, 203, 0) 167.8%);
    color: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Form */
#form-wrapper{
    max-width: 400px;
    background-color: white;
    margin: auto;
    padding: 40px;
    border-radius: 2px;
}

form{
    color:black;
    display: flex;
    flex-direction: column;
}