body {
    font-family: Arial, sans-serif;
    background-color: #f2fbff;
    text-align: center;
    padding: 20px;
  }
  
  h1 {
    color: #006064;
    margin-bottom: 30px;
  }
  
  .galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .galeria img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
  }
  
  .galeria img:hover {
    transform: scale(1.05);
  }
  