body {
    background-color: beige;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Hace que el cuerpo tome al menos la altura de la pantalla */
}

.container {
    background-color: #f4f4f9; /* Fondo suave */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    margin: auto; /* Centra horizontalmente */
    display: block; /* Asegura que se muestre */
    min-height: 60vh; /* Asegura que tenga altura suficiente */
}

h1 {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 19px;
}

.row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Permite que los elementos se acomoden en pantallas pequeñas */
    margin-top: 30px;
}

.col-md-4 {
    background-color: #e6e6ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
    flex: 1 1 300px; /* Se adapta al ancho disponible */
    max-width: 30%;
}

/* Ajustes responsivos */
@media (max-width: 992px) {
    .col-md-4 {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .col-md-4 {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .col-md-4 {
        max-width: 100%;
    }
}

/* Footer pegado abajo */
.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    margin-top: auto; /* Empuja el footer hacia abajo */
}
