#contact-form{
    min-height: 100vh;
    background-image: url('../res/brick-wall.png');
    background-position: center;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#contact-us-div {
    margin: 20px 0px;
}

#contact-us-div ul{
    list-style: none;
}

#contact-form form{
    background-color: rgba(255, 255, 255, 0.7);
    min-width: var(--300px);

    border-radius: 3px;

    display: flex;
    align-items: center;
    flex-direction: column;

    width: 50vw;
    min-height: 50vh;

    padding: 50px;
    margin: 5vh 0vw;

    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.30);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.30);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.30);
}

#contact-form h2{
    margin-bottom: 20px;
    color: #333;
    font-size: var(--32px);
}

#contact-form p {
    margin-bottom: 20px;
}

#contact-form input{
    padding: 5px;
    margin: 10px;
    border-radius: 3px;
    border: none;
    border-bottom: solid 1px #999;
    width: 30vw;
    min-width: var(--300px);
    font-family: 'Roboto', sans-serif;
}

#contact-form textarea{
    padding: 5px;
    min-width: var(--300px);
    width: 31vw;
    height: 20vh;
    border: solid 1px #999;
    border-radius: 3px;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
}

#contact-form button{
    margin-top: 20px;
    padding: 10px 40px;
    border: none;
    border-radius: 3px;
    background-color: #00b2e2;
    color: #fff;
    font-size: var(--16px);
    font-weight: bold;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.05);
    
    transition: all 0.3s;
}

#contact-form button:hover{
    box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.15);
}

@media screen and (max-width: 950px) {
    #contact-form{
        min-height: 100vh;
    }

    #contact-form form{
        width: 80vw;
    }

    #contact-form input{
        width: 70vw;
    }

    #contact-form textarea{
        width: 71vw;
    }

    #contact-us-div ul{
        width: 70vw;
        margin-top: 10px;
        font-size: smaller;
    }
}