.contactForm {
    width: 40vw;
    max-width: 500px;
    margin-left: 10%;
    background-image: linear-gradient(blue, lightblue);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 10px 18px black;
    margin-top: 35px;
    z-index: 1;
    opacity: .9;
}

#contactFormTitle {
    padding: 20px 20px 10px 30px;
}

.contactFormRow {
    display: flex;
    flex-direction: column;
    padding: 0px 30px;
}

.formItem {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

#contactTextArea {
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.contactUsImg {
    width: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

#comments {
    height: 100px;
    width: 139px;
    border-radius: 5px;
}

#contactSubmit {
    width: 100px;
    height: 30px;
    color: rgb(34, 57, 57);
    border-radius: 5px;
    font-size: 16px;
    background-color: rgb(34, 57, 57);
    color: white;
    margin: 20px 0px;
    border: none;
}

#contactSubmit:hover {
    cursor: pointer;
}

.contactImg {
    position: absolute;
    width: 100vw;
    max-height: calc(100vh - 85px);
    z-index: -1;
    opacity: .7;
}

@media only screen and (max-width: 800px) {
    .contactForm {
        width: 80vw;
        margin-left: 10vw;
    }
}
