.gallery-container {
    width: 80%;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    display: block;
    width: 100%;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
    cursor: pointer;
    border: 20px;
    border-color: white;
}
