body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
}

.galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.galeria a img {
    width: 400px;
    height: auto;
    border-radius: 4px;
    transition: transform 0.2s;
}

.galeria a img:hover {
    transform: scale(1.05);
}

#cargando {
    color: #ccc;
    margin-top: 20px;
}
