﻿body
{
    background-color: white;
}

p
{
    font-family:Raleway, Helvetica, Verdana;
    font-size:1.2em;
    line-height:1.5em;
}

.contentlist ul li
{
    font-family:Raleway, Helvetica, Verdana;
    font-size:1.2em;
    line-height:1.5em;
}

ul.normallist
{
    font-family:Raleway, Helvetica, Verdana;
    font-size:1.15em;
    line-height:1.5em;
}

h1
{
    font-family:Raleway, Helvetica, Verdana;
    text-align:center;
    font-size:2.2em;
}

h2
{
    font-family:Raleway, Helvetica, Verdana;
    text-align:center;
    font-size:1.9em;
}

h3
{
    text-align:center;
    margin-top:2em;
    font-size:1.6em;
    font-family:Raleway, Helvetica, Verdana;
}

.navigation
{
    display:inline-block;
    text-align:center;
    font-family:Arial;
    width:100%;
}

.navigation ul
{
    padding-left:0;
}

.navigation li
{
    list-style-type:none;
    display:inline-block;
    margin:4px;
}

a
{
    text-decoration:none;
    font-weight:bold;
}

.navigation a
{
    display:inline-block;
    color:white;
    background-color: maroon;
    padding:1.2em 2em;
    border:3px solid maroon;
    text-decoration: none;
    text-transform:uppercase;
    font-weight:bold;
    min-width:9em;
}

.navigation a:hover
{
    background-color: #411;
}

.footer
{
    margin-top:5em;
    font-size:.8em;
}

.footer p
{
    color:#777;
}

#banner img
{
    object-fit:contain;
    display:block;
    margin: 0 auto;
    width:100%;
}

#footersponsors img
{
    width:100%;
    margin:0 auto;
    display:block;
    object-fit:contain;
}

img
{
    object-fit:contain;
    display:block;
    margin: 0 auto;
}

.img-sidebyside
{
    
}

img.commember
{
    max-width:320px;
}

.mainBody
{
    margin: 0 auto;
    width: 70%;
    max-width:1500px;
    min-width:900px;
    //background-color: aqua;
}

.imageCaption
{
    text-align:center;
    font-size:.9em;
}

.leftMenu
{
    width:95%;
    margin: 0 auto;
    //background-color: aqua;

}

.gridTest
{
    display:grid;
    grid-template-columns: 1fr 4fr;
    grid-gap:20px;
}

.navbar {
    width: 100%;
    background: transparent;
}

.nav-toggle {
    display: none;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.nav-links a {
    flex: 1;
    padding: 0.9rem 1rem;
    background: #c1121f;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    box-sizing: border-box;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    background: #e01e2d;
}

@media (max-width: 800px) {
    .nav-toggle {
        display: block;
        width: 100%;
        padding: 0.9rem 1rem;
        background: #c1121f;
        color: white;
        border: 0;
        border-radius: 0;
        box-sizing: border-box;
        font: inherit;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
    }

    .nav-toggle:hover,
    .nav-toggle:focus {
        background: #e01e2d;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .navbar.is-open .nav-links {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: left;
    }
}