html {
    font-size: 18px;
    font-family: arial, sans-serif;
    color: black;
    background-color: #1f262e;
}

header {
    background-image: url(../images/mountain.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    width: auto;
    height: 100vh;
}


nav {
    padding: 10px;
    padding-top: 2rem;
    font-family: "Ledger", serif;
}

a {
    color: #1f262e;
    text-decoration: none;
}

.nav1 ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/*nav {
    text-align: center;
    padding-top: 1.5rem;
}

nav li a {
    text-decoration: none;
    color: #1f262e;
    padding-left: 3rem;
    padding-right: 3rem;
    font-family: "Ledger", serif;
}*/

a:hover { 
    border-bottom: 3px solid #1f262e;
}


h1{
    color: black;
    font-family: "Uchen", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    padding-top: 3em;
    font-size: 3.7em;
    text-shadow: -3px 3px 4px white;
    animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

h2 {
    padding-top: 4em;
    text-align: center;
    font-size: 17px;
    font-family: "Ledger", serif;
    font-weight: 400;
    font-style: normal;
}

@keyframes synanim {
    from {opacity: 0;}
    to {opacity: 1;}
}

.title {
    font-family: "Ysabeau SC";
    font-style: normal;
    font-size: 34px;
    color: #F0F0F2;
    text-align: center;
    padding-top: 2em;
    padding-bottom: 2em;
    text-shadow: -2px 2px 4px black;
}

.title.in-view {
    animation: synanim 5s ease;
}

/* Story Of Survival */


#synopsis {
    width: auto;
    height: auto;
    border-bottom: 3px solid white;
    padding-left: 10px;
    padding-right: 10px;
}

.soscont {
    display: inline-block;
}

p {
    height: auto;
    font-size: 16px;
    font-family: "Ledger", serif;
    font-weight: 400;
    font-style: normal;
    color: #F0F0F2;
    text-align: left;
    line-height: 1.5em;
    text-indent: 50px;
    padding-left: 15px;
    padding-right: 15px;
}



.side {
    width: 300px;
}

@media screen and (max-width: 1201px) {
    .side {
        display: none;
        padding-bottom: 3rem;
    }
}

@media screen and (min-width: 1202px) {
    .soscont {
        display: flex;
        height: auto;
    }
    
    .side {
        height: auto
    }

}


/* Cast and Crew */


#cac {
    width: auto;
    height: auto;
    border-bottom: 3px solid white;
}

.crewcontainer {
    display: grid;
    grid-template-rows: 1fr;
    margin: 0 auto;
    justify-items: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 3rem;
    padding-bottom: 3rem;
    max-width: 1000px;
}

.crewcontainer img{
    width: 100%;
}

@media screen and (min-width: 550px) {
    div.crewcontainer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (min-width: 1000px) {
    div.crewcontainer {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

h4 {
    text-align: center;
    font-size: 16px;
    font-family: "Ledger", serif;
    color: aliceblue;
    text-shadow: -1px 2px 3px black;
    padding: 10px;
    margin-bottom: 2rem;
}

/* Behind The Scenes */

#bts {
    width: auto;
    height: auto;
    border-bottom: 3px solid white;
    padding-bottom:3rem;
}

* {box-sizing:border-box}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.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;*/
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

div .text {
  color: #15191e;
  font-size: 15px;
    font-family: "Ledger", serif;
    text-shadow: -1px 1px 5px white;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.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}
}

/* Footer */

footer {
    background-color: #000d1a;
}

.ftpg {
    text-align: center;
    font-size: 14px;
    padding: 10px;
}















