.imagen_animad{
transition: transform 0.3s ease-in-out;
}
.imagen_animada:hover{
    transform: scale(1.1);
}
.contenedor_imagenes{
    display: flex;
    justify-content: space-around;
}
.contenedor_imagenes img{
    flex: 1;
    width: 250px;
    height: 250px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgb(red, green, blue)
}
.imagen_con_texto {
    position: relative;
    max-width: 300px;
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}
.imagen_con_texto img{
    width: 250px;
    height: 250px;
    object-fit: cover;
    display: block;
}
.texto_superpuesto{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(255, 255, 255);
    color: black;
    padding: 5px 10px;
    font-family: sans-serif;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
}
 body {
      background-color: white;
      color: black;
      font-family: Arial, sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      padding: 30px;
    }

    h1 {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 30px;
    }

    .galeria {
      display: flex;
      gap: 25px;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding: 20px;
      width: 90vw;
      scroll-behavior: smooth;
    }

    .galeria::-webkit-scrollbar {
      height: 10px;
    }

    .galeria::-webkit-scrollbar-thumb {
      background: #555;
      border-radius: 10px;
    }

    .item {
      text-align: center;
      flex-shrink: 0;
    }

    .item a {
      display: block;
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .item a:hover {
      transform: scale(1.08);
    }

    .item img {
      width: 400px;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .nombre {
      margin-top: 10px;
      font-size: 1.1em;
      font-weight: bold;
    }
    .pie_de_pagina {
        text-align: start;
    }