/*  CSS RESETS */

*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
html, body {
    height: 100%;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
#root, #__next {
    isolation: isolate;
}
a:link {
	color: white;
}
a:visited {
	color: white;
}
a:hover {
	color: darkred;
}
a:active {
	color: red;
}


/* UTILITY */

/* ONLY SHOW FOR SCREEN READERS */
.sr-only {
    clip: rect(0,0,0,0)!important;
    border-width: 0!important;
    height: 1px!important;
    margin: -1px!important;
    overflow: hidden!important;
    padding: 0!important;
    position: absolute!important;
    white-space: nowrap!important;
    width: 1px!important;
}

/* 16X9 FLEXIBLE WRAPPER */
.aspect-h-9 {
    --tw-aspect-h: 9;
}
.aspect-w-16 {
    --tw-aspect-w: 16;
    padding-bottom: calc(var(--tw-aspect-h)/var(--tw-aspect-w)*100%);
    position: relative;
}
.aspect-w-16>* {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

/* PRESENTATION STYLES */

.bg-red {
    background-color: #cc1212 !important;
}
.bg-purple {
    background-color: #5b058d !important;
}
.bg-yellow {
    background-color: #f1d75f !important;
}
.bg-green {
    background-color: #025c19 !important;
}
.p-4 {
    padding: 1rem !important;
}
.text-shadow {
    text-shadow: 4px 4px 6px #000;
}

/* TYPOGRAPHY */
h1 {
    font-size: 2.75rem;
    line-height: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}
h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}
h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-decoration-line: underline;
}
h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: .5rem;
    font-weight: 800;
}
h5 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: .5rem;
    font-weight: 600;
}
h6 {
    font-size: .875rem;
    line-height: 1rem;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 800;
}
p {
    font-size: 1.375rem;
    line-height: 2rem;
}

/* CONTENT */

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: black;
    color: #fff;
    padding: 20px;
}

.wrapper {
    margin: 0 auto;
    max-width: 1200px;
}

/* NAVIGATION */

/* MOBILE/DEFAULT - sets logo column to span menu columns */
.main_menu {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "logo logo"
        "menu-left menu-right";
    margin-bottom: 1.5rem;
    align-items: end;
}
.menu-left {
    grid-area: menu-left;
}.menu-right {
    grid-area: menu-right;
}
.logo_area {
    grid-area: logo;
    margin-bottom: 1rem;
}
.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}
.menu li {
    font-family: Oswald, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}
.menu li a {
    color: #fff;
    text-decoration: none;
}
.menu li a:hover {
    color: darkred;
}
.footer_main_menu {
    max-width: 500px;
}
.footer_main_menu .menu li {
    font-size: 1rem;
}

/* TABLET MEDIA QUERY */
/* sets menu columns that are between 30%-326px wide, whichever is smaller, with rest for logo */
@media (min-width: 40rem) {
    .main_menu {
        grid-template-columns: min(326px,30%) 1fr min(326px,30%);
        grid-template-areas: "menu-left logo menu-right";
        gap: 1.5rem;
    }
    .menu {
        justify-content: space-between;
    }
    .logo_area {
        margin: 0;
    }
    .menu li {
        font-size: 1.375rem;
    }
    .footer_main_menu .menu li {
        font-size: 1.25rem;
    }
}

/* DESKTOP MEDIA QUERY */
@media (min-width: 75rem) {
    .menu li {
        font-size: 1.675rem;
    }
}
.container.full {
	grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

  .container.flex {
            height: 100vh;
            display: grid;
            justify-content: center;
            align-items: center;
}

@media (min-width: 40rem) {
    .container {
        grid-template-columns: 1fr 1fr;
    }
}

.panel {
    background-color: #000;
    height: auto;
}
.panel img.full {
    object-fit: cover;
}
.panel.container.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel h2, .panel p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.social {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}


        .text {
            background-color: black;
            grid-area: text;
            padding-top: 10px;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            font-size: 1.5rem;
            line-height: 1.2;
            font-weight: 400;
            padding: 10px 10px;
            text-shadow: 4px 4px 6px black;
            text-align: left; 
        }
        a:link {
            color: white;
        }
        a:visited {
            color: white;
        }
        a:hover {
            color: darkred;
        }
        a:active {
            color: red;
        } 
       