*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#wrapper{
height: 100vh;
overflow-x: hidden;
overflow-y: scroll;
}
.container{
    height: 100%;
    width: 1200px;
    margin: 0 auto;
    padding: 20px;
  
}
.container h1{
    margin: 20px 0;
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
}
.Gallery{
    display: flex;
    flex-wrap: wrap;
   justify-content: space-around;
}
.card{
    width: 32%;
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    
}
.card img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    box-shadow: 0 0 20px #333;

}
.card :hover{
    transform: scale(1.03);
    filter: drop-shadow(0 0 10px #333);
    transition: 0.2s;
}
.card img:hover{
    filter: grayscale(0%);
}
.card figcaption{
    position: absolute;
    opacity: 0;
    color: #fff;
    font-size: 18px;
    height: 25%;
    width: 100%;
    padding: 20px;
    font-weight: 500;
    bottom: 0;
    left: 0;
    background: linear-gradient(odeg,rgba(0,0,0,0.5)0%,rgba(255,255,255,0)100%);
    transition: 0.3;
    border-radius: 0 0 10px 10px;

}
.card:hover figcaption{
    opacity: 1;
    transform: scale(1.03);
}