.contactContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.contactBackground {
    background-color: white;
    /* height: 1328px; */
    width: 60%;
    box-shadow: 0.25rem 0.25rem 0.25remrgba(0, 0, 0, 0.377);
}

@media screen and (max-width: 559px) {

    .contactBackground {
        width: 85%;
        margin-top: 3rem;
        padding: 1rem;
        margin-bottom: 2rem;
    }
}

@media screen and (min-width: 560px) {
    .contactBackground {
        padding: 2rem;
    }
}

.contactHeader {
   font-family: "DM Serif Display", serif;
    font-size: 3.13rem;
    color: #86A59D;
    margin-top: 3.13rem;
    text-align: center;
}

.contactText {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 4.37rem;
    text-align: center;
}

.contactForm {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    
}

.formContainer {

    display: flex;
    justify-content: center;
}

.contactInput {
    max-width: 95%;
    min-height: 2.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    border: 0.25rem solid #d7dbda;
    
}

.contactInput:focus {
    outline: none;
    border: 0.25rem solid #86A59D;
}

.messageInput {
    width: 95%;
    height: 300px;
    border-radius: 10px;
    border: 4px solid #d7dbda;
    justify-content: left;
    padding: 8px;
    font-size: 1.5rem;
}

.messageInput:focus {
    outline: none;
    border: 0.25rem solid #86A59D;
}

.contactButton{
    width: 9.3rem;
    min-height: 3.5rem;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-color: #86A59D;
    font-size: 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: bold;
    
}

.contactButton:hover {
    box-shadow: 0.13rem 0.13rem 0.13rem rgb(128, 125, 125);
    cursor: pointer;
}

.contactLabel {
    color: #86A59D;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: -10px;
}