body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
}

header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    margin-top: 10px;
    margin-bottom: -5px;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding:5px;
    letter-spacing: 1px;
    word-spacing: 2px;
    /* border-radius: 2px; */
    /* transition: 0.4s; */
}

nav a:hover{
    /* background-color: white;
    color: black; */
    border-bottom: 2px solid white;
}

nav .comp img{
    display: flex;
    position: absolute;
    left:10px;
    top:10px;
    height: 60px;
}

nav .sco img{
    display: flex;
    position: absolute;
    right:10px;
    top:10px;
    height: 60px;
}

#schedule>div{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-left: 10px;

}
#schedule h2{
    text-align: center;
    font-size: 35px;
}
#schedule>div>div{
    margin-top: 20px;
    font-style: italic;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
#schedule h3{
    font-size: 15px;
    font-weight: bolder;
}
#schedule>div img{
    height: 50px;
    width: 40px;
    align-items: center;
    justify-content: center;
}
#schedule p{
    margin-top: -15px;
    font-size: 14px;
    font-weight: lighter;
    color:  rgb(67, 67, 67);
}

.content{
    margin-left: 10px;
}

.content h1{
    margin-top: 50px;
    margin-bottom: 30px;
}
.content h3{
    text-decoration: underline;
}
.content h3::before {
    content: "";
    display: inline-block;
    width: 4px; /* Adjust thickness */
    height: 1em; /* Adjust height */
    background-color: blue; /* Change to your preferred color */
    margin-right: 8px; /* Adjust spacing */
    vertical-align: middle;
}

.sponsors-section {
    text-align: center;
    background-color: #f0f4f8; /* Light background */
    padding: 40px 20px;
}

.sponsors-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.sponsors-container {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Aligns items vertically */
    gap: 50px; /* Adds space between logos */
    flex-wrap: wrap; /* Ensures responsiveness */
}

.sponsor {
    text-align: center;
    width: 250px; /* Adjust width for better alignment */
}

.sponsor img {
    width: 120px; /* Set image size */
    height: auto;
    display: block;
    margin: 0 auto 10px; /* Centers image */
    mix-blend-mode: multiply;
}

.sponsor p {
    font-size: 14px;
    margin-top: 5px;
}


.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding-top: 0px;
    border-top: 1px solid #ddd;
    background-color: #1a1a1a;
    color: white;
}
.footer-left {
    max-width: 50%;
}
.footer-left h3 {
    font-size: 18px;
    font-weight: bold;
}
.footer-left p {
    font-size: 14px;
    width: 70%;
}
.footer-left a {
    color: #9664c8;
    text-decoration: none;
    font-weight: bold;
}
.footer-left a:hover {
    text-decoration: underline;
}
.footer-right {
    text-align: right;
}
.footer-mid img {
    width: 120px;
}

.footer-right p {
    font-size: 14px;
}
.contact-info {
    font-size: 14px;
    font-weight: bold;
}
.contact-info a {
    color: #0073e6;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 500px) {
    nav ul{
        margin-top: 10px;
        margin-bottom: -5px;
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: center;
        gap:0.5px;
        font-size: 7px;
    }
    #schedule>div{
        display: flex;
        flex-direction: column;
        margin-left: 10px;
    
    }
    .logo{
        margin-bottom: 15px;
    }
    .logo h4{
        margin-top: 0px;
        font-size: 10px;
    }

    .logo .comp img{
        margin-top: -10px;
        height: 50px;
        width: 50px;
    }

    .logo .sco img{
        height: 30px;
    }
}