.navbar{
    background-color: #032810;
}

.gallery {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 90%;
    max-width: 1000px;
    padding-top: 150px;
}

.gallery img {
    width: 100%;
    height: 200px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
  
}

.gallery img:hover {
    transform: scale(1.05);
}

.gallery img.blur {
    filter: blur(5px) brightness(0.8);
}

.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.fullscreen img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.fullscreen .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: bold;
}
@media(max-width: 800px){
    .gallery{
        margin: 0 auto; /* Center the gallery container */
    justify-items: center; 
    grid-template-columns: repeat(1, 1fr);
    }
    .gallery img{
        height: auto;
    }
}