.section-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #edebdf;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*height: 150px;*/
}

.contact h2 {
    font-family: "Autumn-Wind";
    font-size: 70pt;
    font-weight: 400;
}

.contact-text {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    /*margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    height: 300px;*/
}

.contact-form {
    display: flex;
    /*justify-content: center;*/
    flex-direction: column;
    padding-bottom: 50px;
}

#name_c {
    justify-content: space-evenly;
    height: 3vw;
    width: 30vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

#email_c {
    justify-content: space-evenly;
    height: 3vw;
    width: 30vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

#phone_c {
    justify-content: space-evenly;
    height: 3vw;
    width: 30vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

#address_c {
    justify-content: space-evenly;
    height: 3vw;
    width: 30vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

#message_c {
    display: flex;
    height: 8vw;
    width: 50vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

.contact-form #submit_c {
    background-color: #92A69A;
    border-radius: 15px;
    /*margin-left: 200px;*/
    width: 50vw;
    height: 3vw;
    font-size: 14pt;
}

.contact-form #submit_c:hover {
    cursor: pointer;
    background-color: #E4B4AE;
}

@media(max-width: 800px) {
    .contact h2 {
        max-width: 90%;
        font-size: 12vw;
    }
    .contact p {
        max-width: 90%;
        font-size: 4vw;
    }
    .contact-form {
        max-width: 90%;
    }
    .contact-form input::placeholder {
        font-size: 2vw;
    }
    .contact-form textarea::placeholder {
        font-size: 2vw;
    }
    .contact-form #submit_c {
        width: 30vw;
        height: auto;
        font-size: 3vw;
    }
}