* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", "sans-serif";

}
#wrapper {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.container {
  margin: 0 auto;
  max-width: 1200px;
  height: 100%;
  padding: 20px;
}
.container h1 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 3rem;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card {
  width: 32%;
  position: relative;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 400px;
  filter: grayscale(100%);
  box-shadow: 0 0 0px #333;
  object-fit: cover;
  border-radius: 10px;
  
}
.card:hover{
    transform: scale(1.03);
    transition: 0.5s;
filter: drop-shadow(0 0 10px #333);
 /* box-shadow: (0 0 10px); */
}
.card:hover img{
    filter: grayscale(0%);

}
.card figcaption{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    width: 100%;
    height: 20%;
    font-size: 20px;
    font-weight: 500;
    opacity: 0;
    color: #fff;
    border-radius: 0 0 10px 10px;
    /* using https://cssgradient.io/ to generate gradient */
    background: linear-gradient(0deg,rgba(0,0,0,0.5) rgba(255,255,255,0) 0%, 100%);
    transition: 0.2s;
}
.card:hover figcaption{
  opacity: 1;
  transform: scale(1.03);
}

