body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #b5d2ec;
}

header {
    width: 100%;     /* Ocupa todo el ancho de la pantalla */
    text-align: center; /* Centra el texto */
    padding: 10px;   /* Espacio interno */
    background-color: #356fa1; /* Fondo igual al del body, opcional */

    margin-bottom: 20px;
    font-family: "Chewy", system-ui; /* Cambia la fuente aquí */
}

header h1 {
    font-family: "Chewy", system-ui;
    color: #a0cbf3;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery a {
    text-decoration: none;
    color: #333;
    text-align: center;
}

.gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.1);
}

main img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    align-items: center;
}

footer {
    position: fixed; /* Fija el footer en la pantalla */
    bottom: 0;       /* Lo coloca en el margen inferior */
    left: 0;         /* Alinea al borde izquierdo */
    width: 100%;     /* Ocupa todo el ancho de la pantalla */
    text-align: center; /* Centra el texto */
    padding: 10px;   /* Espacio interno */
    background-color: #b5d2ec; /* Fondo igual al del body, opcional */
    color: #96b9d8;     /* Color del texto */
    font-size: 12px; /* Tamaño de la fuente */
    z-index: 1000;   /* Asegura que esté por encima de otros elementos */
}

footer p {
    margin: 0; /* Elimina márgenes predeterminados del párrafo */
}

