body {
    font-family: 'noto sans', sans-serif;
    margin: 0;
    padding: 0;
}
#main_title {
    color: #4177eb;
    text-align: center;
    padding-top: 75px;
}
.section_titles {
    text-align: center;
    break-before: column;
    font-size: 1.25em;
}
.bold_blue {
    font-weight: bold;
    color: #4177eb;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    grid-auto-rows: minmax(50px, auto);
}
.left {
    padding-left: 35px;
    grid-column: 1;
}
.center {
    grid-column: 2;
}
.right {
    padding-right: 35px;
    grid-column: 3;
}
#banner {
    position: fixed;
    width: 100%; /* Ensures full viewport width */
    background-color: #8ba7e3;
    text-align: right;
    padding-top: 12.5px;
    padding-right: 10px;
    padding-bottom: 12.5px;
    top: 0;
}
#banner-content {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    white-space: nowrap;  /* Prevents breaking inside links */
    padding-right: 15px;
    justify-content: right;
    text-align: right;
    row-gap: 5px;
    column-gap: 25px;
}
#banner a {
    text-decoration: none;
    color: black;
}
img.sponsors {
    padding-left: 10px;
    padding-right: 10px;
}
            
.dropbtn {
    color: black;
    font-size: 16px;
    border: none;
    background-color: #8ba7e3;
    font-family: 'noto sans', sans-serif;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #8ba7e3;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    text-align: left;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #4177eb;
}
a {
    color: #4177eb;
}
.center-text {
    text-align: center;
}

#current {
    background-color: #4177eb;
    padding: 0px 5px 0px 5px;
}

#dropdown-current {
    background-color: #4177eb;
    padding: 12px 16px;
}

.button {
    background-color: #8ba7e3;
    border: none;
    color: black;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    font-family: 'noto sans', sans-serif;
    cursor: pointer;
}