*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

.comingSoon{
    width: 98vw;
    height: 98vh;
    margin: auto;
}

.cSoonImg{
    width: 100%;
    background-position: 50% 50%;
    background-size: cover;
}

.contForm{
    width: 98vw;
    height: 50vh;
    position: absolute;
    top: 25%;

    display: none;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: center;
    align-items: stretch;
}

h2{
    width: 100%;
    font-size: 1.3em;
    text-align: center;
    text-emphasis: initial;
    text-shadow: 0 0 2px black;
    padding: 0 0 10px 0;
    color: whitesmoke;
    line-height: 19px;
}

form{
    display: flex;
    flex-direction: column;
    align-content: stretch;
    justify-content: center;
    align-items: stretch;
    text-align: center;

    width: 30%;
    height: 350px;
    padding: 20px;
    background-color: rgba(46, 46, 85, .7 );
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    box-shadow: 0px 0px 10px 1px whitesmoke;
}

input{
    width: 80%;
    margin: auto;
    padding: 0 10px;
}

.contBtns{
    display: flex;
    flex-direction: row;
    padding: 5px ;

}

textarea{
    resize: none;
    width: 80%;
    height: 150px;
    padding: 10px;
    margin: auto;
    font-family: 'Courier New', Courier, monospace;
}

.btnCSoon{
    width: 100vw;
    height: 2em;
    color: green;
    position: absolute;
    left: 0;
    z-index: 10;
    bottom: 40px;
    text-align: center;
    text-shadow: 0px 0px 1px greenyellow;
    font-size: 1.5rem;
    cursor: pointer;
}

.mostrar{
    display: flex;
    z-index: 20;
}

@media (max-width: 840px) {
    
    form{
        width: 80%;
    }

    .btnCSoon{
        bottom: 15px;
    }


}