@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.largeText {
    font-size: 18pt;
}

body {
    background-color: #bd1f0d;
    color: white;
    height: 100vh;
    font-family: "Karla", sans-serif;
}

nav {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    padding: 15px 5%;
    align-items: center;
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 2;
}

.logo {
    color: white;
    font-size: 22px;
    font-family: "IBM Plex Sans", sans-serif;
}

ul {
    list-style: none;
}

ul li {
    display: inline-block;
}

ul li a {
    text-decoration: none;
    color: white;
    font-family: "IBM Plex Sans", sans-serif;
    padding: 8px 30px;
    transition: all .3s ease;
}

ul li a:hover,
ul li a.active {
    color: black;
    background-color: white;
}

#icon {
    background-color: black;
    padding: 5px 7px 3px 7px;
    cursor: pointer;
    transition: all .3s ease;
}

#icon svg {
    color: white;
    height: 28px;
}

#icon:hover {
    background-color: white;
}

#icon:hover svg {
    color: black;
}

#checkbox,
#icon {
    display: none;
}

.about {
    padding-left: 10px;
    padding-right: 10px;
}

.sponsorButton {
    background-color: #bd1f0d;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 16pt;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sponsorInfo {
    width: auto;
    background-color: black;
    margin: 20px;
    padding: 10px;
    box-shadow: 0 0 0 1px black;
}

.sponsorInfo:hover {
    background-color: white;
    color: black;
    border: 0px solid white;
    box-shadow: 0 0 0 1px white;
}

.galleryButtons {
    background-color: #bd1f0d;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 16pt;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
}

/* Responsive Styles Mobile */
@media screen and (max-width: 760px) {
    nav {
        width: 100%;
        margin-top: -0px;
        border-bottom: 1px solid white;
    }

    ul {
        position: absolute;
        width: 100%;
        height: calc(100vh - 71px);
        background-color: black;
        left: 0;
        top: 0;
        text-align: center;
        display: none;
        margin-top: 71px;
    }

    ul li {
        display: block;
        padding: 10px 15px;
    }

    ul li a {
        display: block;
        padding: 10px 0;
    }

    #icon {
        display: block;
    }

    #checkbox:checked~ul {
        display: block;
        z-index: 1;
    }

    .bannerImg {
        width: 300px;
    }
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

#container {
    min-height: 100%;
    position: relative;
    max-width: 960px;
    margin: auto;
}

#header {
    padding: 10px;
}

#body {
    padding: 10px;
    padding-bottom: 60px;
}

#footer {
    width: 100%;
    height: 45px;
}

#footer_text {
    text-align: center;
    text-decoration: underline;
    font-weight: bold;
}

/* Responsive Styles Desktop */
@media screen and (min-width: 761px) {
    #announcement {
        /* height: 100%;
		width: 200px;
		float: right;
		background-color: firebrick;
        align-items: center; */
        display: none;
    }

    .about-img1 {
        width: 600px;
    }

    .sponsorContainer {
        display: grid;
        grid-template-areas: "tileOne tileTwo"
            "tileThree tileFour"
            "tileFive tileFive";
    }

    .tileOne {
        grid-area: tileOne;
    }

    .tileTwo {
        grid-area: tileTwo;
    }

    .tileThree {
        grid-area: tileThree;
    }

    .tileFour {
        grid-area: tileFour;
    }

    .tileFive {
        grid-area: tileFive;
    }

    .galleryImagePref {
        width: 100%;
        height: auto;
        margin: 10px;
    }

    .galleryContainer {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .imagesContainer {
        width: 100%;
        display: grid;
        grid-template-areas: "one one"
            "two three"
            "four five";
    }

    .platinum {
        margin: 5px;
        grid-area: one;
    }

    .gold {
        margin: 5px;
        grid-area: two;
    }

    .silver {
        margin: 5px;
        grid-area: three;
    }

    .bronze {
        margin: 5px;
        grid-area: four;
    }

    .contributor {
        margin: 5px;
        grid-area: five;
    }

    .platinumImage {
        width: 50%;
        margin: 20px;
        height: auto;
        margin-bottom: 10px;
    }

    .goldImage, .silverImage {
        width: 75%;
        margin: 20px;
        height: auto;
        margin-bottom: 10px;
    }

    .bronzeImage, .contributorImage {
        width: 35%;
        margin: 20px;
        height: auto;
        margin-bottom: 10px;
    }
}