body{
    background-color: rgba(200, 198, 198, 0.712);
}

.contacto-title{
    text-align: center;
    font-size: 3rem;
    margin-top: 2rem;
    line-height: 1.2;
}
.correo_texto{
    display: flex; 
    flex-direction: column;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    height: 50%;
    width: 50%;
    margin: auto; 
    line-height: 1.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.contact-form label {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.6rem;
    color: black;
}

.contact-form input, .contact-form textarea {
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: beige;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.6rem;
}

.contact-form button:hover {
    background-color: #f0e68c;
}