/* Estilos para la Página de Contacto */


.heading-line {
    width: 100px;
    height: 4px;
    background-color: #ffc107; 
    margin: 20px auto;
    border-radius: 5px;
}

/* Estilos para la lista de información de contacto */
.contact-info a {
    text-decoration: none;
    color: white ;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffc107;
}

.contact-info .fa-lg {
    color: #ffc107;
}

/* Estilos para el formulario */
.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Estilo del botón de enviar */
.btn-primary {
    background-color: black;
    border-color: black;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffc107;
    border-color: #ffc107;
}
body {
    background-image: url('./Img/body.png');
    background-size: cover;
    /* Desplaza la imagen 50 píxeles hacia arriba */
    background-position: center -175px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}

.lead{
    color:white;
}
