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

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a, button {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
}

p, form label, form input::placeholder {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

header {
    background-color: #404040;
}

.logo {
    margin: 0 auto;
    width: 300px;

}

#icon {
    position: absolute;
    top: 2.5%;
    left: 3%;
    color: white;
    font-size: 75px;
}

.mobile-nav {
    text-align: center;
    background-color: #d4d4d4;
}

#menu-links {
    display: none;
}

.mobile-nav li {
    padding-top: 10px;
}

.mobile-nav li:first-child {
    padding-top: 3px;
}

.mobile-nav a {
    color: black;
    text-decoration: none;
    font-size: 25px;
}

.desktop-nav {
    display: none;
}

/* main */
h1 {
    margin: 10px 20px 10px 20px;
}

h2 {
    margin: 10px 20px 10px 20px;
}

p {
    margin: 10px 20px 10px 20px;
}

.mobile-fgrid img {
    width: 400px;
    margin: 0 auto;
}

.mobile-fgridb img {
    width: 400px;
    margin: 0 auto;
}

.mobile-fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #404040;
    margin: 15px 15px 0 15px;
    border-radius: 10px 10px 0 0;
    height: 250px;
}

.mobile-fgridb {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    background-color: #404040;
    margin: 0 15px 15px 15px;
    border-radius: 0 0 10px 10px;
    height: 250px;
}

.cform, .conform {
    margin: 20px 20px;
    background-color: #404040;
    border-radius: 10px;
}

form label {
    margin: 8px 10px;
    color: white;
    display: inline-block;
    font-size: 18px;
}

form input, textarea {
    margin: 10px 10px;
    width: 50%;
    height: 25px;
    font-size: 18px;
    padding-left: 3px;
}

form input::placeholder, textarea::placeholder {
    font-size: 18px;
    color: gray;
    font-style: italic;
}

form button {
    width: 100px;
    height: 30px;
    margin-left: 10px;
    margin-bottom: 10px;
    background-color: #d4d4d4;
    margin-top: 5px;
    font-size: 20px;
    color: black;
}

.conform textarea {
    width: 80%;
    height: 100px;
    margin-left: 10px;
    margin-bottom: 15px;
}

#bluetext, #redtext, #purpletext, #greentext, #orangetext {
    display: none;
    color: white;
    font-size: 20px;
    text-align: center;
}

.desktop-wholegrid {
    display: none;
}

body {
    background-color: #d4d4d4;
}

.sponsors img {
    object-fit: cover;
    width: 450px;
    height: 450px;
    margin: 10px auto;
    border-radius: 15px;
}

.sponsors p:last-child {
    margin-bottom: 10px;
}

.sponsors p {
    color: white;
    background-color: #404040;
    text-align: center;
    margin: 0;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.text {
    background-color: #717171;
}

footer {
    background-color: #404040;
}

.footer img {
    width: 200px;
}

.footer {
    display: grid;
    grid-template-columns: auto auto;
    text-align: right;
    margin-right: 10px;
}

.footer a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition-duration: 0.3s;
}

.footer-links {
    display: block;
    text-align: left;
    margin-left: 20px;
    font-size: 20px;
}

.copyright {
    color: white;
    text-align: center;
    font-size: 15px;
    margin-bottom: 0;
    padding-bottom: 5px;
}

.desktop-footer {
    display: none;
}









/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    background-color: #404040;
    margin: 15px;
    border-radius: 10px;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}






@media screen and (min-width: 987px) {
    .mobile-nav {
        display: none;
    }

    .grid {
        display: grid;
        grid-template-columns: 350px auto;
    }

    .logo {
        display: inline-block;
        transition-duration: 0.3s;
    }

    .logo:hover {
        opacity: 0.65;
        transition-duration: 0.5s;
    }

    .desktop-nav {
        display: inline;
        margin-top: 55px;
        margin-right: 50px;
    }

    .desktop-nav li {
        display: inline;
        padding-right: 50px;
    }

    .desktop-nav a {
        color: white;
        text-decoration: none;
        font-size: 30px;
        transition-duration: 0.3s;
    }

    .desktop-nav a:hover {
        color: gray;
        transition-duration: 0.5s;
    }

    .mobile-wholegrid {
        display: none;
    }

    .desktop-wholegrid {
        display: block;
        background-color: #404040;
        margin: 20px;
        border-radius: 15px;
    }

    .desktop-wholegrid p {
        color: white;
        text-align: center;
        margin: 0 35px 10px 35px;
    }

    .desktop-wholegrid img {
        width: 450px;
        margin: 0 auto;
    }

    .desktop-fgrid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        margin: 0 auto;
    }

    .desktop-lgrid {
        display: grid;
        grid-template-columns: auto auto;
        margin: 0 auto;
    }

    .desktop-lgrid img {
        margin: 0 auto;
    }

    .sponsors {
        display: grid;
        grid-template-columns: auto auto;
    }

    .slideshow-container, .dots {
        display: none;
    }

    .desktop-egrid, .desktop-egridl {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .desktop-egrid, .desktop-egridl img {
        border-radius: 15px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    


    
    .mobile-footer {
        display: none;
    }

    .desktop-footer {
        display: block;
    }

    .desktop-footer .footer-links {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .footer-links:hover {
        color: gray;
        transition-duration: 0.5s;
    }

    .footer {
        display: grid;
        grid-template-columns: auto auto auto auto;
    }

    #footer-logo {
        width: 400px;
    }
}

@media screen and (min-width: 1800px) {
    body {
        max-width: 1800px;
        margin: 0 auto;
        background-color: black;
    }

    main {
        background-color: #d4d4d4;
    }

    h2 {
        background-color: #d4d4d4;
        margin-top: 0;
        padding-top: 10px;
    }
}