body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    text-align: center;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}
h1 {
    color: #333;
    text-align: center;
    font-size: 2.5em; /* Increase font size */
    margin-bottom: 20px;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Optional: Add a gradient effect */
h1 {
    background: linear-gradient(135deg, #4a90e2, #36d1dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
