    *{
      font-family: Arial, sans-serif;
      text-align: center;
     
    }
    body {
  background-image: url("fondi.jpeg");
  background-size: cover;                 
  background-position: center;            
  background-repeat: no-repeat;          
  background-attachment: fixed;          
}


    .contenedor {
      display: flex;
      justify-content: center;
      margin-top: 50px;
      gap: 50px; 
    }
    
    .apartado {
      width: 228px;
      border: 2px solid #232020;
      border-radius: 3px;
      overflow: hidden;
      background: #112b12cc;
      transition: transform 0.3s;
    }

    .apartado:hover {
      transform: scale(1.05);
    }

  .apartado img {
  width: 250px;
  height: 280px;
  object-fit: cover;
}

    .apartado p {
      margin: 0;
      padding: 0px;
      background: #f7f3f3;
      font-weight: bold;
    }
    a {
      text-decoration: none;
      color: inherit;
    }

    .galeria {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      justify-items: center;
      margin: 40px;
    
    }

    .galeria .apartado {
      width: 250px;
      border: 2px solid #31bf6a;
      border-radius: 10px;
      overflow: hidden;
      background: #eff0f0;
      transition: transform 0.3s;
    }

    .galeria .apartado:hover {
      transform: scale(1.05);
    }

    .galeria img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background-color: white;
}


    .info {
      background-color: #edecec;
      border-radius: 10px;
      padding: 20px;
      width: 70%;
      margin: 0 auto;
      font-size: 18px;
      font-weight: bold;
      border: 2px solid #38e279;
    }
     
    .mapa-contenedor {
  margin: 40px auto;
  width: 300px;
  text-align: center;
}

.mapa-contenedor img {
  width: 120%;
  border-radius: 10px;
  border: 2px solid black;
  cursor: pointer;
  transition: transform 0.3s;
}

.mapa-contenedor img:hover {
  transform: scale(1.05);
}
.contacto {
  width: 80%;
  margin: 30px auto;
  background: #ffffffa1;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #000;
  font-size: 18px;
}


    footer{
    background: rgba(0, 0, 0, 0.436);
    color: white;
    text-align: center;
    height: 30px;
    line-height: 30px;
}
   
