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

header {
    background-color: #003366;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

#banner {
    /*background: url('pizza-banner.jpg') no-repeat center center/cover;*/
    padding: 2rem;
    text-align: center;
}

section {
    padding: 2rem;
    text-align: center;
}

#tickets a {
    display: inline-block;
    background-color: #007acc;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

#challenge-logo {
    max-width: 100%; /* Ensure the logo doesn't exceed its container */
    height: auto;
    display: block;
    margin: 0 auto;
}

.ticket-button-wrapper {
    display: inline-block;
    cursor: not-allowed;
    text-align: center; /* Center the button */
}

.disabled-button {
    display: inline-block;
    background-color: #007acc;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

/* Other styles remain the same */

#challenge-logo {
    max-width: 100%; /* Ensure the logo doesn't exceed its container */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Adjust max-width for the GCCS logo to prevent overflow on mobile devices */
#gccs-logo {
    max-width: 80%; /* Adjust the percentage as needed */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    header nav ul li {
        margin-right: 10px; /* Reduce margin for smaller screens */
    }

    #banner {
        padding: 1rem; /* Adjust padding for smaller screens */
    }
}



/* carousel */
#sponsors {
    text-align: center;
    padding: 2rem;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.pic-ctn {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.pic {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    animation: fade 12s infinite;
    object-fit: cover; /* Resize the images nicely */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

@keyframes fade {
    0% { opacity: 0; }
    8.33% { opacity: 1; }
    25% { opacity: 1; }
    33.33% { opacity: 0; }
    100% { opacity: 0; }
  }
  
  .pic:nth-child(1) { animation-delay: 0s; }
  .pic:nth-child(2) { animation-delay: 4s; }
  .pic:nth-child(3) { animation-delay: 8s; }


