/* Estilos Generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: white;
    color: #1E3A5F;
    text-align: center;
}
body{
    background-color: var(--white);
}

/* cambiar la imagen de hero */
.hero {
    /* background: url('../img/tejer.png') no-repeat center center/cover; */
}

/* Sección Historia y Línea de Tiempo */
.about, .timeline {
    padding: 40px 15px;
    max-width: 90%;
    margin: auto;
}

/* Eventos de la línea de tiempo */
.event {
    background: #f0f7ff;
    color: #1E3A5F;
    margin: 15px auto;
    padding: 15px;
    border-left: 4px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

/* Botón */
.btn {
    background: #FFD700;
    color: #1E3A5F;
    padding: 12px 20px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.btn:hover {
    transform: scale(1.05);
}


/* 🔥 Media Queries (Tablets y Escritorio) */
@media (min-width: 768px) {
    
    /* About y Timeline */
    .about, .timeline {
        max-width: 800px;
    }

    /* Eventos */
    .event {
        max-width: 500px;
    }

}
