body {
    font-family: cursive;
    background: #111;
    color: white;
    text-align: center;
}

h2 {
    margin: 20px;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
}

.galeria img {
    width: 150%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s;
}

.galeria img:hover {
    transform: scale(1.05);
}