#coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#coming-soon h1 {
    color: rgb(250, 250, 250);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 5px;
    font-size: 25px;
}

#coming-soon iframe {
    width: 853px;
    height: 505px;
}

#teaser-code-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#teaser-code-form input {
    border-radius: 2px;
    border: 1px solid rgba(24, 24, 27, 0.5);
    width: 25vw;
    color: rgb(255, 255, 255);
    background-color: rgba(17, 17, 20, 0.5);
    font-family: 'Montserrat', sans-serif;
    padding: 10px 10px;
    transition: 0.05s;
}

#teaser-code-form input:focus {
    outline: 0;
    border: 2px solid rgb(39, 39, 43);
}

#teaser-image {
    margin-top: 100px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 450px) {
    #coming-soon iframe {
        width: 560px;
        height: 340px;
    }
}