*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background-image: linear-gradient(0deg, rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(img/Fondo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  gap: 60px;
  overflow-x: hidden;
}

.gallery-container{
  width: 80%;
  margin: 100px auto;

  display: grid;
  grid-template-columns: repeat(3, 33%);
  grid-template-rows: repeat(2, 300px);
}

.gallery-container .gallery-card{overflow: hidden};

.gallery-container .gallery-card a{
  width: 100%;
  height: 100%;
}

.gallery-container .gallery-card a > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.05s;
}
.gallery-container .gallery-card a > img:hover{
  transform: scale(1.5) rotate(30deg);
}
