body{
    background-image: url('https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExd2lpb2FyMjhpOGg0dGhjYXM5ZmtlbDhuM216djBwNWUyY2g1MTVhayZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/ihl7EFv3G1rthe9NMx/giphy.gif');
    background-size: cover;
    background-position: inherit;
    background-repeat: no-repeat;
    padding:0;
    margin:0;
    overflow: auto;
    background-attachment: fixed;
    display: flex;
    
  font-family: "Metal Mania", system-ui;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
    
}

.img-gallery{
  background-color: black;
  text-align: center;
  justify-content: center;
  
  margin:5% 7%;
  font-size: 17px;
  font-weight:900;
  
  height: auto;
  width: 90%;
  background-color: rgba(13,16,19, 0.99);
  border: 10px solid rgba(255, 255, 255);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  padding-bottom:5%;
  padding:5%;
  
  display: grid;
  flex-wrap: wrap;
  justify-content: flex-start;
   gap: 40px;   
    place-items: center; 
}

.img-gallery:hover {
  transform: translateY(-5px);
}

h2{
    color: white;
    font-size: 40px;
}
.gallery-item{
  margin: 5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Forces 3 items per line */
}


.gallery-item img {
  
  border: 7px solid rgba(255, 255, 255);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  
  margin-top: 0%;
  width: 80%;
  height: 80%;
  place-self: center; 
  padding-bottom: 60px;
  background-color: white;
}

.gallery-item img:hover{
  transform: translateY(-15px);
   border: 20px solid rgba(255, 255, 255);
  
}