body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #121212;
    color: #e0e0e0;
}

.gallery-container {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

h1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
    
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.image-grid img:hover {
    transform: scale(1.03);
}
.video-container {
    margin-top: 40px;
    text-align: center;
}

.video-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}