*{
    font-family: 'Open Sans', sans-serif;
}

body{
    background: #333;
}

.userInput{
    background: url(https://images.unsplash.com/photo-1602780374996-8c6499ce7420?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2167&q=80) no-repeat center;
    background-size: cover;
    padding: 100px 40px;
    text-align: center;
    color: white;
}

.userInput p{
    max-height: 600px;
    margin:40px auto;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
}

h1{
    font-weight: 400;
    color: rgb(248, 150, 30);
}

.email{
    height: 40px;
    display: flex;
    justify-content: center;
}

.email span{
    width: 40px;
    line-height: 40px;
    font-size: 30px;
}

.input, .button{
    border: none;
    outline: none;
}

.input{
    width: 0px;
    transition: 0.5s;
}

.email:hover > .input,.input:focus{
    width: 260px;
    padding: 0 10px;
}

.button{
    background:##14213d;
    color: white;
    padding: 0 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.overlay{
    position:fixed;
    width:100%;
    height:100%;

}