body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    font-size: 24px;
}

h2 {
    color: #2c3e50;
    margin-top: 20px;
}

/* Image Gallery Styling */
.image-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.image-gallery img {
    width: 350px; /* Increased size for better visibility on desktop */
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Ensures images don't distort */
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.image-gallery img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .image-gallery img {
        width: 280px; /* Slightly smaller on tablets */
    }
}

@media (max-width: 768px) {
    .image-gallery {
        flex-direction: column;
        align-items: center;
    }

    .image-gallery img {
        width: 90%; /* Takes up most of the width on smaller screens */
        max-width: 400px;
    }
}

/* List Styling */
ul {
    list-style-type: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
}

ul li {
    background-color: #34495e;
    color: white;
    padding: 12px;
    margin: 6px 0;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
}

#landing-page {
    text-align: center;
    margin-top: 10vh;
}

.landing-image {
    width: 60%; /* Adjust the size of the image */
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

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

.enter-text {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 10px;
}
