html {
    font-size: 16px;
}
body {
    background: black;
    color: white;
    scroll-behavior: smooth;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}
a {
    font-size: 1.25rem !important;
}
a.larger {
    font-size: 1.5rem !important;
}
p {
    color: white;
    font-size: 1.25rem;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

.outer-container {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
    x-scroll-snap-type: y mandatory;
}

.no-show {
    display: none;
}
.top-container {
    overflow-y: hidden;
    margin: 2px 0;
}

.container {
    width: 100%;
}
.container.scrolling {
    overflow-y: scroll;

}
.container.no-snap {
    scroll-snap-align: unset;
}
.top {
    width: 100%;
    background: rgba(20,0,20,0.7);
    display: flex;
    flex-direction: row;
}
nav {
    position: static;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}
nav ul {
    margin-top: 1.25rem;
    list-style: none;
    display: flex;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
nav ul li {
    margin: 1rem 1rem;
}
nav ul li { 
    width: 120px;
    padding: 0.25rem 0.75rem;
    border: 1px azure solid;
    font-size: 1.5rem;
    text-align: center;
    background-color: darkblue;
}
nav ul li a { 
    color: white;
    border-size: content-box;
    display: block;
    position: relative;
    z-index: 3;
    padding: 2rem;
    margin: -2rem;
    text-decoration: none;
}
nav ul li a:hover { 
    color: lightblue; 
    text-decoration: underline;
}
.monolith {
    position: relative;
    margin-top: 4px;
}
.monolith img {
    height: 100vh;
  opacity: 0.75;
  transition: opacity 12.25s ease-in;
  -moz-transition: opacity 12.25s ease-in;
  -webkit-transition: opacity 12.25s ease-in;
}
.monolith figcaption {
    position: absolute;
    top: 5rem;
    left: 40%;
    color: white;
    font-size: 2rem;
    z-index: 2;
}

.descended {
    position: absolute;
    top: 4rem;
    left: 2rem;
}
.night-freaks {
    background: black;
}
.selected {
    background: red;
}

h1 { font-size: 4rem; } 
h3 { font-style: italic; font-size: 2rem; }
.hits {
    text-align: center;
}
.heading {
    min-width: 500px;
    flex: 1 1 auto;
    background: black;
    width: 100vw;
}
.top-heading {
    color: white;
}
.top-heading h1 {
    font-family: Monoton, fancy;
    font-size: 9rem;
    width: 100%;
}

section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    scroll-snap-align: start;
}
section#photosection {
    height: 100vh;
}
section#counter {
    padding-top: 60px;
    height: fit-content;
}
section.block {
    display: block;
    margin: 5rem 0 0 0;
}

/* @media (min-aspect-ratio: 1/2) {
    .container.no-snap {
        width: 60%;
        height: auto;
        scroll-snap-align: auto;
    }
}
@media (max-aspect-ratio: 2/1) {
    .container.no-snap {
        width: 80%;
        scroll-snap-align: auto;
    }
}
@media (aspect-ratio: 16/10) {
    .container.no-snap {
        width: 100%;
        scroll-snap-align: auto;
    }
} 
*/
.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.nav a {
    display: inline-block;
    width: auto;
    height: auto;
    border: 2px darkblue dotted;
    padding: 3px 4px; 
    margin: -2px 4px 4px;
    background: rebeccapurple;
    color: white;
    font-weight: 600;
    font-family: arial, sans-serif;
    font-size: 24px;
    text-align: center;
}
.image {
    margin-top: 2px;
    width: auto;
    height: 100vh;
}
.image .image-img {
    width: 100%;
    height: auto;
}
.bios,
.credits {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}
#creditssection {
    padding-top: 160px;
}
.credits {
    width: 60%;
    margin-left: 28%;
    justify-content: center;
    align-items: center;
    background: black;
    padding: 3rem 2rem;
    text-align: center;
    border: 0;
}
.credits .credit {
    text-align: center;
    display: block;
    color: black;
}
.section {
    border: 0px outset #333;
    padding: 2rem;
}
.notes,
.songs,
.bios {
    color: white;
    width: 60%;
    margin-top: 2rem;
    margin-left: 24%;
    margin-right: 24%;
}
.notes .box,
.songs .song,
.bios .bio {
    border-top: 1px grey solid;
    padding-bottom: 1rem;
}
#creditssection h2,
#trailer h2,
#songs h4,
.bios h4 {
    margin-top: 1rem;
    color: white;
}
.bios .bio,
.bios .bio h4,
.bios .bio p,
.crew * {
    color: white;
}
.posters {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 3rem;
}
.posters img {
    height: auto;
}
.posters .night-freaks-award {
    width: 460px;
    height: auto;
}
.photos {
    display: grid;
    justify-content: start;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}
.photos-wide {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.photos-wide,
.photos img {
    width: 100%;
    height: auto;
}
.photos-wide img {
    margin: 1rem 0.5rem;
}
/*
@media screen and (min-width: 768px) {
    .posters img {
        height: auto;
        width: 100%;
    }
    .photos img {
        max-width: 768px;
        height: auto;
    }
    .photos {
        margin-left: 4%;
        margin-right: 4%;
        grid-template-columns: repeat(1, 1fr);
    }
.photos img {
    width: 100%;
}
}
*/
@media screen and (min-width: 768px) {
    .posters {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex: 1 1 auto;
    }
    .posters img {
        height: auto;
        width: 100%;
    }
    .photos img {
        height: auto;
    }
    .photos img.image-wide {
        min-width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }
    .photos {
        margin-left: 7%;
        margin-right: 7%;
        grid-template-columns: repeat(2, 1fr);
    }
}
/*
@media screen and (min-width: 1300px) {
    .posters img {
        height: auto;
        max-width: 675px;
    }
}
*/
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
    .photos img {
        max-width: 500px;
        height: auto;
    }    
}
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
    .photos img {
        max-width: 500px;
        height: auto;
    }    
}

@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
    .photos img {
        max-width: 500px;
        height: auto;
    }  
}

/* Portrait */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
    .photos img {
        max-width: 500px;
        height: auto;
    }  
}

/* Landscape */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
    .photos img {
        max-width: 500px;
        height: auto;
    }  
}
/* .poster-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
}
*/
img.image-poster {
    width: 100%;
    height: auto; 
    max-height: 85vh;
    margin: 2px 4px;
} 
.gallery {
    font-size: 3rem;
    color: white;
    display: flex;
}
.gallery p {
    font-size: 3rem;
}
.gallery .image-overlay {
    display: flex;
}
.gallery .gallery-text {
    width: 80%;
    margin: 0 2rem;
    padding: 0 1rem;
}
.gallery .gallery-image img.selfie {
    width: 200px;
}
.video {
    margin-left: auto;
    margin-right: auto;
}
.X-video-play {
    position: relative;
    bottom: 60rem; left: 0rem;
    border: none;
    width: 600px;
    height: 400px;
}
#footer {
    margin: 3rem 2rem 0;
    color: white;
    font-size: 2rem;
}
@media screen and (max-width: 1400px) {
    .top-heading h1 {
        font-size: 8rem;
    }
}
@media screen and (max-width: 1200px) {
    .top-heading h1 {
        font-size: 7rem;
    }
}
@media screen and (max-width: 992px) {
    .gallery {
        flex-direction: column;
    }
    .gallery p {
        font-size: 3rem;
    }
    nav {
        background: rgba(20,0,20,0.7);
        display: flex;
        flex-direction: column;
    }
    nav ul li {
        margin: 0.4rem;
        padding: 0.25rem;
    }
    nav .topmenu {
        display: flex;
        flex-direction: row;
        line-height: 1;
    }
    .heading {
        flex-grow: 2;
    }
    .top-heading h1 {
        font-size: 6rem;
    }
    h3 { font-style: italic; font-size: 1.75rem; }
    .pyramid img {
        width: 100%;
        height: auto;
    }
}
@media screen and (max-width: 768px) {
    .gallery {
        flex-direction: column;
    }
    .gallery p {
        font-size: 2rem;
    }
    nav ul {
        justify-content: flex-start;
    }
    .top-heading h1 {
        font-size: 5.5rem;
    }
    h3 { font-style: italic; font-size: 1.5rem; }
    nav ul li { 
        width: 100px;
        padding: 0.15rem 0.25rem;
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 1200px) {
    .video-play {
        position: relative;
        bottom: 60rem; left: 0rem;
        border: none;
        width: 400px;
        height: 300px;
    }
}
@media screen and (max-width: 992px) {
    .video-play {
        position: relative;
        bottom: 60rem; left: 0rem;
        border: none;
        width: 300px;
        height: 240px;
    }
    .gallery p {
        font-size: 2.4rem;
    }
}
@media screen and (max-width: 768px) {
    .video-play{
        position: static;
    }
    .image .image-img {
        width: 100%;
        height: auto;
    }
    .gallery p {
        font-size: 2rem;
    }
}

/** 
 * no longer used 
 */

.pyramid {
    margin-top: -35rem;
}
.pyramid img {
    height: 100vh;
}
.pyramid-overlay {
    position: relative;
    width: 100%;
}
 #music {
    display: flex;
    flex-direction: row;
}
.lyrics {
    position: relative;
    top: 3rem; left: 60rem;
    padding: 1rem;
}
.half-width {
    width: 25%;
}

.gallery-chamber {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 2rem;
}
.gallery-chamber figure {
    color: white;
    font-size: 2rem;
    position: relative;
}
.gallery-chamber figcaption {
    position: absolute;
    top: 2rem;
    left: 2rem;
}
.gallery-chamber .gallery-image {
    height: auto;
}
@media screen and (max-width: 992px) {
    .gallery-chamber {
        display: flex;
        flex-direction: column;
    }
}
.gallery-chamber figure img {
    max-height: 700px; 
    min-width: 0;
}
.gallery-chamber figure img.gg {
    height: 80vh;
}
.gallery-chamber figure img.kc {
    width: 100%;
}

.gallery-chamber figure {
    flex: 0 1 80vh; 
}
.gallery-chamber figure:nth-of-type(2) {
    flex: 1 1 100vh; 
}

#prophesy {
    display: flex;
    align-items: center;
    color: white;
}
#prophesy img {
    margin: 3rem;
    width: 80%;
}
@media screen and (max-width: 1400px) {
    .video-play {
    }
}
@media screen and (max-width: 1200px) {
    .lyrics {
        position: relative;
        top: 3rem; 
        left: 40rem;
        padding: 1rem;
    }
}
@media screen and (max-width: 992px) {
    .lyrics {
        position: relative;
        top: 3rem; 
        left: 30rem;
        padding: 1rem;
    }
}
@media screen and (max-width: 768px) {
    .lyrics {
        position: static;
        width: 100%;
    }
}


.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
    gap: 24px;
}
.award-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.award-icons img {
    width: 140px;
    height: auto;
}

.award-icons img:hover {
    width: 240px;
}

h2.lights {
    border: 7px dotted white;
    padding: 2rem;
    width: fit-content;
}
