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