body {
    font-family: Arial, sans-serif;
    margin: 20px;
    /*background: #f4f4f4;*/
   /* color: #333;*/
    text-align: center;
}

header h1 {
  /*  color: #2c3e50;*/
    margin-bottom: 30px;
}

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

.galeria img {
    width: 200px;
    height: auto;
    border: 3px solid #ccc;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.galeria img:hover {
    transform: scale(1.05);
    border-color: #2c3e50;
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #888;
}
