html {
    box-sizing: border-box;
    background-color: #2b2e31;
    box-sizing: inherit;
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

body {
    margin: 0
}

h1,
h2 {
    margin: 10px 0;
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 12px
}

.header {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    max-width: 1300px;
}

.header-image {
    max-width: 100%;
    height: auto
}

.header-text {
    border: 2px solid white;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar-large {
    background-color: #006550;
    border-radius: 4px;
    position: absolute;
    transform: translate(-50%, 0%);
    display: inline-block;
    left: 50%;
    bottom: -10px
}

.navbar-small {
    background-color: #006550;
}

.navlink {
    color: white;
    display: inline-block;
    padding: 8px 10px;
    text-decoration: none;
}

.navlink:hover {
    background-color: #669675;
}

.section {
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.overview {
    background-color: white;
}

.overview-text {
    padding: 5px;
}

.overview a:link {
    color: #006550;
    text-decoration: none;
}

.overview a:visited {
    color: #006550;
}

.overview a:hover {
    text-decoration: underline;
}

.sale {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.sale-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sale-left,
.sale-right {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: white;
}

.sale-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sale img {
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.us-eagle-logo {
    font-family: sans-serif;
    font-weight: bold;
    font-size: 3.3em;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
    color: #2b2f14;
    text-decoration: none;
}

.origopro-logo {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3em;
    text-decoration: none;
}

.origopro-logo .origo {
    color: #e50000;
    font-weight: bold;
    font-size: 2.5em;
}

.origopro-logo .pro {
    color: #666666;
    font-weight: bold;
    font-size: 2.5em;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 5px;
}

.sponsor-grid-item {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: white;
}

.sponsor-grid img {
    display: block;
    object-fit: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sponsor-link-text {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
}

.tile {
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    pointer-events: none;
    opacity: 1;
    z-index: 9999;
}

.media {
    display: flex;
    gap: 10px;
}

.media-item {
    flex: 1 1 48%;
    justify-content: center;
    margin: 0 auto;
    min-height: fit-content;
}

.facebook {
    width: 100%;
    max-width: 500px;
}

@media (max-width: 1000px) {
    .media {
        gap: 5px;
        flex-direction: column;
    }

    .media-item {
        margin: 0 auto;
    }
}

@media (min-width:601px) {
    .hide-large {
        display: none !important
    }
}

@media (max-width:600px) {
    .hide-small {
        display: none !important
    }

    .sale {
        flex-wrap: wrap;
        gap: 10px;
    }

    .sale-links {
        display: flex;
        gap: 10px;
        width: 100%;
        justify-content: space-between;
        align-items: stretch;
    }

    .sale-left,
    .sale-right {
        flex: 1 1 0;
        max-width: calc(50% - 5px);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .us-eagle-logo {
        font-size: 14vw;
    }

    .origopro-logo {
        font-size: 5vw;
    }
}