* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Fredoka", sans-serif;
}
.main-container{
    max-width: 2000px;
}
#section{
    display: flex;
    justify-content: center;
    gap: 120px;

}
.grid-container {
    background-color: white;
    padding: 10px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px; /* Combining row and column gaps */
    margin-bottom: 30px;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Optional: Add some styling to the images */
}

.grid-item{
    
}
.penta-design{
    position: relative;
}
.penta-image{
    position: absolute;
    z-index: -1;
    height: 400px;
    bottom: 90%;
}
.penta-design-right{
    position: relative;
}
.penta-image-right{
    position: absolute;
    z-index: -1;
    height: 400px;
    right: 0;
}

.image-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery-image{
    width: 280px;
    height: 200px;
    border-radius: 10px;
}

.gallery-container{
    max-width: 1220px;
}


li {
    list-style: none;
}

.navbar-gallery {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
}

.menu {
    display: flex;
}

.logo {

    height: 5rem;
}

.nav-link {
    text-decoration: none;
    font-size: 20px;
    color: rgb(65, 65, 65);
    font-weight: 600;
}
.gallery-title{
    font-size: 4rem;
}
.title-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
}
.title-line{
    height:20px;
    width:210px;
    background-color:pink;
    position:relative;
    top:-25px;
    border-radius: 20px;
    z-index: -1;
}
.title-style{
    display:flex;
    flex-direction:column;
    position:relative;
}
.border{
    width: 100%;
    height: 15px;
    background-color: skyblue;
    border-radius: 20px;
    border: none !important;
}
.video-wrapper{
    margin-top: 30px;
  
}
.number-line{
    height: 10px;
    width: 150px;
    background-color: yellow;
    border-radius: 20px;
}
#number{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.number-line{
  position: absolute;
  bottom: 10px;
  z-index: -1;
}




/* Media query for larger screens */
@media (min-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .gallery-image{
        width: 230px;
    }
}

@media (min-width: 900px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (min-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-image{
        width: 280px;
    }
}
@media (max-width: 920px) {
    .video-wrapper{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }
}
