body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
    width: 96%;
    margin-left: 2%;
}

header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #02311B;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headertitle {
    color: white;
    padding: 20px;
    width: 40%;
    text-align: left;
}

.headertitle img {
    width: 100%;
    height: auto;
    display: block;
}


.quizimage {
    width: 50%;
    text-align: left;
    margin: 0 auto; /* centers the section */
    padding-bottom: 20px;
border-radius: 15px;
}

.quizimage img {
    width: 100%;
    height: auto;
    display: block;
border-radius: 15px;
}





.linkquizimage {
    width: 80%;
    text-align: left;
    margin: 0 auto; /* centers the section */
    padding-bottom: 20px;
    padding-top: 20px;
border-radius: 15px;
}

.linkquizimage img {
    width: 100%;
    height: auto;
    display: block;
border-radius: 15px;
}




.homepagelinkquizimage {
    width: 40%;
    text-align: left;
    margin: 0 auto; /* centers the section */
    padding-bottom: 20px;
    padding-top: 20px;
border-radius: 15px;
}

.homepagelinkquizimage img {
    width: 100%;
    height: auto;
    display: block;
border-radius: 15px;
}














header h1 {
    margin: 0;
    font-size: 24px;
}

.navbox {
    color: white;
    margin-right: 5%;
}

.nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav {
        font-size: .75em; 
    }
}

@media (max-width: 480px) {
    .nav {
        font-size: .75em; 
    }
}


.banner {
    background-color: #105C31;
    color: white;
    padding: 50px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
}

.bannerleft,
.bannerright {
    flex: 1;
}

.bannerleft {
    width: 40%;
    text-align: left;
}

.bannertext {
    font-size: 4rem; /* 64px if 1rem = 16px */
    font-weight: bold;
    width: 100%;
    text-align: left;
    line-height: 1.2;
}


.banner button {
    background-color: #32CD32;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.banner button:hover {
    background-color: #28a428;
}

.bannerright {
    width: 40%;
    text-align: left;
}

.bannerrightimage {
    width: 70%;
    text-align: left;
border: 0px solid orange;
}

.bannerrightimage img {
    width: 100%;
    height: auto;
    display: block;
}












.desktopbannerbox {
    display: none;
}

@media (min-width: 768px) {
  .desktopbannerbox {
    display: block; /* or flex, grid, etc., depending on your layout */
  }
}



.mobilebannerbox {
    display: none;
}

@media (max-width: 768px) {
  .mobilebannerbox {
    display: block; /* or flex, grid, etc., depending on your layout */
  }
}


.mobilebanner {
    background-color: #105C31;
    color: white;
    padding: 50px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
}


.mobilebannerleft {
    width: 80%;
    text-align: left;
}

.mobilebannertext {
    font-size: 40px;
    margin-bottom: 5px;
    font-weight: bold;
    width: 100%;
    text-align: left;
}

@media (max-width: 768px) {
    .mobilebannertext {
        font-size: 1rem; 
    }
}

@media (max-width: 480px) {
    .mobilebannertext {
        font-size: 1rem; 
    }
}

.mobilebanner button {
    background-color: #32CD32;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}



@media (max-width: 768px) {
    .mobilebanner button {
        font-size: 1rem; 
padding: 5px 15px;
    }
}

@media (max-width: 480px) {
    .mobilebanner button {
        font-size: 1rem; 
padding: 5px 15px;
    }
}











.mobilebanner button:hover {
    background-color: #28a428;
}

.mobilebannerright {
    width: 80%;
    text-align: left;
}

.mobilebannerrightimage {
    width: 100%;
    text-align: left;
}

.mobilebannerrightimage img {
    width: 100%;
    height: auto;
    display: block;
}













.quizzes {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.quizzes h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.quiz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.quiz-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
}

.quiz-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.quiz-card:hover img {
    transform: scale(1.2); /* Scale image up by 5% */
}

.quiz-card h4 {
    margin: 10px;
    font-size: 20px;
}

.quiz-card p {
    margin: 0 10px 15px;
    font-size: 14px;
    color: #666;
}










    .mainbannerbox {
        width: 80%;
        margin: 0 auto; /* This centers the div horizontally */
        text-align: center; /* Optional: centers the image inside */
        padding-top: 20px;
    }

.mainbannerbox img {
    width: 100%;
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes bottom whitespace under image */
}

    .mainbanner {
        width: 80%;
        margin: 0 auto; /* This centers the div horizontally */
        text-align: center; /* Optional: centers the image inside */
    }
.mainbanner img {
    width: 100%;
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes bottom whitespace under image */
}

.about-banner {
    color: black;
    padding: 40px 20px;
    text-align: center;
}

.about-banner h1 {
    font-size: 64px;
    margin: 0;
    font-weight: bold;
}

.about-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-size: 18px;
    line-height: 1.6;
}

.about-content h2 {
    margin-top: 30px;
    color: #02311B;
    font-size: 28px;
}

.about-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}



.site-footer {
    color: black;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 3px solid #e0e0e0;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav {
    margin-top: 10px;
}

.footer-nav a {
    color: black;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.footer-nav a:hover {
    text-decoration: none;
    color: #32CD32;
}









.quiz-banner {
    color: black;
    padding: 40px 20px;
    text-align: center;
}

.quiz-banner h1 {
    font-size: 60px;
    margin: 0;
    font-weight: bold;
}


        .question {
            background-color: #105C31; 
            padding: 15px;
            margin: 20px auto;
            margin-bottom: 10px;
            width: 70%;
            border-radius: 8px;
        }
        .questionheader {
            margin-bottom: 10px;
            color: white;
        }
        .option {
            background-color: yellow;
            padding: 10px;
            margin: 5px auto;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: block;
            width: 80%;
            border-radius: 5px;
        }
        .option:hover {
            background-color: orange;
        }
        .submit-button {
            display: block;
            margin: 20px auto;
            padding: 20px 30px;
            font-size: 22px;
            background-color: blue;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .submit-button:hover {
            background-color: darkblue;
        }
        .score {
            text-align: center;
            margin-top: 40px;
            font-size: 20px;
            color: green;
        }
        .correct-answer {
            margin-top: 5px;
            color: white;
            font-weight: bold;
        }












.club-list {
  width: 80%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
padding-bottom: 20px;
}

.club-list h2 {
  text-align: left;
}

.club-list a {
  color: #0645AD;
  text-decoration: underline;
}

.club-list a:hover {
  text-decoration: none;
}

