#central {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

#central h6 {
    font-size: 1.5rem;
    color: var(--color-darkred);
    margin: 1rem;
}

#form_contacto {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#form_contacto label {
    font-size: 1.2rem;
    color: darkred;
}

#form_contacto input, #form_contacto textarea {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
}

#form_contacto input, #form_contacto textarea {
    padding: 0.5rem;
    line-height: 1.2rem;
    font-size: 1.2rem;
}

#form_contacto button[type="submit"] {
    border: none;
    padding: 0.5rem;
    line-height: 1.2rem;
    font-size: 1.2rem;
    background-color: gray;
    color: whitesmoke;
    font-weight: 700;
    cursor: pointer;
}

#form_contacto button[type="submit"]:hover {
    background-color: #aaa;
    color: darkred;
}

@media (min-width: 768px) {
    /* Entre 768px y 992px */
    #form_contacto {
        width: 70%;
    }
}

@media (min-width: 992px) {
    /* Entre 992px y 1200px */
    #form_contacto {
        width: 50%;
    }
}

