.contact-section {
    padding: 20px 0;
    background: var(--theme-inverse-color);
}

.contact-container {
    color: var(--text-inverse-color);
}

.contact-form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.field {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5em 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.field>input {
    padding: 0.5em 0.5em;
    font-size: 26px;
    width: 100%;
}

.field>label {
    padding: 0.5em 0.5em;
    font-size: 26px;
}

.contact-form .button {
    width: 300px;
    max-width: 300px;
    margin: 5px auto;
}

.message {
    border: #ff0000 solid 1px;
    background: #ff4242;
    height: 50px;
    width: 100%;
    max-width: 1200px;
    color: var(--text-inverse-color);
    padding: 0.5em 2em;
    margin: 0 auto;
    display: none;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    font-size: 26px;
    transition: display 0.7s;
}

.green {
    border: #00831c solid 1px;
    background: #2f811e;
}

.button-close {
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text-inverse-color);
    cursor: pointer;
}

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

    .field>input,
    .field>label,
    .message,
    .button-close {
        font-size: 20px;
    }

}

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

    .contact-form .button {
        width: 100%;
        margin: 5px auto;
    }

}