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

:root {
    --nav-color: rgba(20, 20, 1, 1);
    --nav-color-secondary: rgba(0, 0, 0, 0);
    --nav-height: 2rem;
    --main-font-col: rgb(236, 231, 206);
    --emphasized-text: #EAA221;
    --bshadow-color: rgba(100, 100, 100, 0.3);
}

a:active,
a:focus {
    outline: 0;
    border: none;
    outline-style: none;
    -moz-outline-style: none;
}

@font-face {
    font-family: 'norwester';
    src: url('/fonts/norwester-webfont.woff2') format('woff2'),
        url('/fonts/norwester-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* BASEBASEBASEBASEBASEBASEBASEBASEBASEBASEBASEBASEBASEBASEBASEBASEBASEBASE */

html {
    font-size: 20px;
    color: var(--main-font-col);
}

body {
    background-color: rgb(10, 10, 10);
    width: 100vw;
    max-width: 100%;
    line-height: 1.5;
    font-family: "Trebuchet MS",
    Helvetica,
    sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    line-height: 1;
}

li {
    list-style-type: none;
}

h1,
h2,
h3,
h4 {
    color: var(--emphasized-text);
    margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
li {
  font-family: 'norwester';
}

hr {
    color: rgb(211, 184, 144);
    margin: 1.5rem 0;
}

p {
    text-align: left;
}
.small-text {
    font-size: 1.2rem;
}

.smaller-text {
    font-size: 0.9rem;
}
/* CONTAINERCONTAINERCONTAINERCONTAINERCONTAINERCONTAINERCONTAINERCONTAINERCONTAINER */

.container {
    width: 100vw;
    height: auto;
    max-width: 800px;
    padding: 0 1rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 800px) {
    .container {
        border-radius: 5px;
    }
    .nav-link {
        font-size: 0.9rem;
    }
}

.over-hid {
    overflow-x: hidden;
    overflow-y: scroll;
}

/* ABOUTABOUTABOUTABOUTABOUTABOUTABOUTABOUTABOUTABOUTABOUTABOUTABOUTABOUTABOUT */

.list-ctn {
    /* display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    */
    margin-bottom: 1rem;
}
#resources ul {
    /* font-family: 'gnuolaneregular'; */
    text-decoration: underline var(--emphasized-text);
    margin: 1rem;
    text-align: left;
}

#resources ul li {
    list-style-type: disc;
    margin: 0.5rem 0;
}

#resources ul li a:hover {
    color: var(--emphasized-text);
}
#cast li:nth-child(even) {
    font-size: 0.66rem;
    margin-bottom: 1rem;
}

#crew {
    margin-top: 1rem;
}

#director {
    font-size: 1.2rem;
}

#crew li:nth-child(odd) {
    font-size: 0.66rem;
}

#crew li:nth-child(even) {
    font-size: inherit;
    margin-bottom: 1rem;
}

/* TITLETITLETITLETITLETITLETITLETITLETITLETITLETITLETITLETITLETITLETITLETITLETITLE */

.vid-wrap {
    background-image: url('images/actOut.png');
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 55.8%;
    border-radius: 10px;
}

.vid-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#title {
    font-size: 2.5rem;
    margin-top: 1rem;
}
.subscribe-ctn {
    margin-bottom: 1rem;
}

.subscribe-link {
    display: inline-block;
    background-color: rgba(100, 100, 100, 0.3);
    color: var(--main-font-col);
    border-radius: 5px;
    opacity: 0.9;
    border: 0.125rem solid var(--main-font-col);
}

.subscribe-link:hover,
.subscribe-link:active {
    background-color: rgba(100, 100, 100, 0.5);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    border: 0.125rem solid var(--emphasized-text);
    opacity: 1;
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.subscribe-link:active {
    color: var(--emphasized-text);
}

.subscribe-link a {
  width: 100%;
  height: 100%;
  padding: 1rem;
}




/* CONTACTCONTACTCONTACTCONTACTCONTACTCONTACTCONTACTCONTACTCONTACTCONTACTCONTACTCONTACTCONTACT */

.contact-article {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    align-items: center;
}

#brand-ctn {
    min-width: 300px;
    min-height: 300px;
}

#logo {
    filter: invert(100%);
    opacity: 0.3;
    max-width: 80vw;
}

.aka {
    color: var(--emphasized-text);
    opacity: 0.8;
}

.aka:hover {
    opacity: 1;
    text-shadow: 2px 2px 5px black;
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.disclaimer {
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.social-links {
    background-color: rgba(100, 100, 100, 0.3);
    width: max-content;
    padding: 1rem;
    border-radius: 5px;
}

.social-links a {
    padding: 0.5rem;
    filter: invert();
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

/* PRESSPRESSPRESSPRESSPRESSPRESSPRESSPRESSPRESSPRESSPRESSPRESSPRESSPRESSPRESSPRESSPRESS */

.press-container>div {
    padding: 1rem 0;
}
.press ul>li {
    border: 1px solid white;
    margin-bottom: 0.5rem;
}
.press ul>li:hover {
    border: 1px solid var(--emphasized-text);
    color: var(--emphasized-text);
}

.press ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

@media (min-width: 800px) {
    .press-container {
        display: grid;
        grid-template-columns: 2fr 1fr;
        align-items: flex-start;
    }
    .praise {
        margin-right: 1rem;
    }
    .praise h2 {
        margin-bottom: 1rem;
    }
    .press h2 {
        margin-bottom: 1.5rem;
    }
}
/* MISC */

.block-content p {
  margin-bottom: 1rem;
}

.block-content a {
  color: var(--emphasized-text);
  opacity: 0.8;
}

.block-content img {
  max-width: 100%;
}

.block-content a:hover {
  opacity: 1;
  text-shadow: 2px 2px 5px black;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.margin-up {
    margin-bottom: 0;
}

#scroller {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

body::-webkit-scrollbar {
    width: 1rem;
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--emphasized-text);
}

body::-webkit-scrollbar-track {
    background: var(--nav-color);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--emphasized-text);
    border: 0.25rem solid var(--nav-color);
}