#contact_container {
    flex: 1;
    display: flex;
    flex-direction: column;

    margin: auto;
    max-width: 750px;
}

#contact_container h1 {
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Playfair Display';
    font-size: 30px;
}

#contact_container input {
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    border: 2px solid black;
    border-radius: 5px;
    font-family: 'Roboto';
    font-size: 16px;
}

#contact_container input:focus {
    outline: none;
}

#contact_container textarea {
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    height: 200px;
    resize: none;
    border: 2px solid black;
    border-radius: 5px;
    font-family: 'Roboto';
    font-size: 16px;
    letter-spacing: 1px;
}

#contact_container textarea:focus {
    outline: none;
}

#contact_container label {
    display: block;
    margin: 10px 0;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

#contact_container button {
    margin: 50px 0;
    padding: 10px;
    border: 2px solid black;
    border-radius: 5px;
    background-color: white;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
}

#contact_container button:hover {
    background-color: var(--light-grey);
}

#mailing_address {
    text-align: center;
    padding: 25px;
}

#mailing_address h2 {
    font-family: 'Playfair Display';
    margin-bottom: 10px;
}

#mailing_address p {
    font-family: 'Roboto';
    font-size: 18px;
    margin-bottom: 5px;
}

#success_message {
    padding: 10px;
    margin-bottom: 50px;
    border: 2px solid darkgreen;
    border-radius: 5px;
    color: darkgreen;
    font-family: 'Roboto';
}

.error {
    color: red;
    margin-top: 10px;
    font-family: 'Roboto';
    font-size: 16px;
}
