.gallery {
    display: flex;
    width: 300px;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 20px auto;
    position: relative;
}

.image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image:hover {
    transform: scale(1.05);
}

.full-image-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.full-image {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}




#controls {
    margin-bottom: 20px;
}

#boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
