* {
    font-family: 'Poppins', sans-serif;
    align-items: center;
}
body{
    background-color: #F76C6C;
}

.conatiner .heading {
    text-align: center;

    width: 50%;
    padding-bottom: 50%;
}

.container .heading h3 {
    font-size: 3em;
    font-weight: bolder;
    padding-bottom: 10px;
    /* border-bottom: 3px solid #222; */
}

.container .heading h3 span {
    font-weight: 100;
}



body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 200px;
    /* Set a fixed height for all images */
    object-fit: cover;
    /* Maintain aspect ratio and cover grid item */
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

img:hover {
    transform: scale(0.8);
    border-radius: 20px;
    box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
}
