.container{
    @media (min-width: 750px) {
    display: flex;
    height: fit-content
    }
}

.content{
    h1 {margin-bottom: 0px;}
    margin: 5%;
    width: 40%;
    @media (max-width: 750px) {
        width: 90%;
    }
    @media (min-width: 750px) {
        margin-top: 0px;
    }
    text-align: center;
    div{
        text-align: left;
    }
}

.text {
    @media (min-width: 820px) {
        @media (min-width: 1090px){
            font-size: 2em;
        }
        else{
            font-size: 1em;
        }
        height: 300px;
        line-height: 1.5em;
    }
    width: 95%;
    padding: 5px;
    background-color: blue;
    border-radius: 5px;
}

.questions{
    display: flex;
    margin-bottom: 3%;
}
.question{
    width: fit-content;
}
.input{
    flex : 1;
    margin-left: 10px;
    @media (min-width: 750px){
        height: 2em;
    }
    margin-top: auto;
    margin-bottom: auto;
    
}

.button{
    padding-left: 5%;
    padding-right: 5%;
    background-color: red;
    width: fit-content;
    height: fit-content;
    border-radius: 5px;
    text-align: center;
    margin: auto;
    margin-top: 10%;
    }
#review{
    text-align: center;
    margin-left: auto;
}
.soon{
    position: fixed;
    left: 45%;
    
    top: 50%;
    
    font-size: 3em;
    color: seagreen;
    z-index: 1000;
    width: 10%;
    text-align: center;
}