*{
  padding: 0;
  margin:0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #040507;
  color: #333;
}

.header{   
  padding: 30px 10px ;
  /* background:url("banner.jpg") no-repeat fixed center bottom; */
  background: url("imgs/bg.gif") no-repeat fixed center bottom;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.watermarked {
  position: relative;
  display: inline-block;
  cursor: pointer; /* Muestra que es interactivo */
  text-align: center;
}

.watermarked img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
  max-width: 100%;
}

.watermarked img:hover {
  transform: scale(1.0);
}

.watermarked .watermark {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  border-radius: 5px;
  pointer-events: none; /* No interfiere con los clics */
}

.image-title {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

h2{
  color:rgb(68, 190, 164);
  text-align: center;
  padding: 20px 10px ;
    /* background:url("banner.jpg") no-repeat fixed center bottom; */
  background: url("imgs/bg.gif") no-repeat fixed center bottom;
  background-size: cover;
}

hr{
  height: 7px;
  background-color: rgb(82, 15, 158);
  border-color: rgb(82, 15, 158);
  }

footer {
  text-align: center;
  margin-top: 30px;
  padding: 10px 0;
  background-color: #130202;
  color: white;
}