/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.gallery-container {
    text-align: center;
    margin: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
}

.gallery-item {
    width: 100%;
    height: auto;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover,
.gallery-item video:hover {
    transform: scale(1.05);
}

/* Mobile and Tablet Views */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}
