/* Reset some default styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    text-align: center;
}

/* Styling for the red banner */
.banner {
    background-color: #990000; /* Deep red */
    color: white;
    padding: 10px;
    margin-top: 0px; /* Adjust as needed */
}

.banner h1 {
    margin: 0;
    font-size: 70px;
    font-weight: bold;
}

/* Subheading below the banner */
.subheading {
    margin: 1px 0;
    font-size: 20px;
    color: black;
}

/* Container around the main content */
.container {
    width: 100%;
    max-width: 900px; /* Adjust width */
    margin: 0 auto;
    padding: 20px;
}

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

/* Flexbox for image placement */
.images {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px; /* Space between images */
    margin: 30px 0;
}

.option {
    text-align: center;
}

.option img {
    width: 350px; /* Image size */
    height: 500px;
    object-fit: cover;
    border: 1px solid #ddd;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    transition: transform 0.2s ease-in-out;
}

.option img:hover {
    transform: scale(1.05);
}

.or {
    font-size: 24px;
    margin: 0 20px; /* Spacing around OR */
}

/* Leaderboard styling */
.leaderboard {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.leaderboard h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

#leaderboard-list {
    list-style: none;
    padding: 0;
}

#leaderboard-list li {
    margin: 5px 0;
    font-size: 16px;
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 600px) {
    .images {
        flex-direction: column;
        gap: 20px;
    }

    .option img {
        width: 100%;
        height: auto;
    }

    .or {
        margin: 10px 0;
    }
}
