/* styles.css 
   Project: 
   Author: 
   Date: 
*/

/*google font*/

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Montserrat:wght@300;400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
/*main css*/


* {
   box-sizing: border-box;
}

img, video {
   width: 100%;
   display: block;
}

body {
   background-color: black;
   font-family: 'Georgia', sans-serif;
   /*font-family: 'Montserrat', sans-serif;*/
}

h1 {
   font-size: 3em;
}

.desktop {
   display: block;
}

.mobile {
   display: none;
}

.nav {
   font-family: 'Courier', cursive;
   -webkit-text-stroke-width: 1px;
   -webkit-text-stroke-color: rgba(0,0,0,0.8); 
   color: rgba(255,255,255,0.8);
   padding: 10px;
   font-size: 10vw;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   text-align: center;
   cursor: pointer;
   transition: 0.2s ease;
}

.nav:hover {
   color: orangered;
}

#back {
   left: 0px;
}

#forward {
   right: 0px;
}





.slide {
   width: 100vw;
   height: 100vh;
   display: flex;
   align-items: center;
   overflow: hidden;

}

.slide img, .slide video {
   height: 100%;
   object-fit: cover;
   position: absolute;
   left: 0px;
   bottom: 0px;
   z-index: -1;
}

.slide.first img {
   object-position: 50% 0%;
}


.fulltextlink {
   position: absolute;
   bottom: 10%;
   right: -50%;
/*   make 5% if you dont want motion*/
   background-color: white;
   width: 11%;
/*   border: 5px solid black;*/
}

.fulltextlink a {
   color: black;
   font-family: Georgia, sans-serif;
}

.fulltextlink img {
   width: 100%;
   height: auto;
   position: relative;
   z-index: 1; 
} 


.inner {
   max-width: 800px;
   margin: auto;
   padding: 0% 10%;
}

.inner img, .inner video {
   width: 100%;
   height: auto;
   position: relative;
   z-index: 1;
}

.text {
   background-color: black;
   color: white;
   padding: 20px;
   font-size: 1.2em;
}

.intro {
   background-color: black;
   color: white; 
}

.sub img {
   width: 50%;
   margin: auto;

}

.photogrid {
   display: grid;
   grid-auto-flow: column;
   grid-gap: 20px;
}

.big {
   max-width: 1200px;
   padding: 10% 10%;
}



.progress {
   position: fixed;
   bottom: 0px;
   left: 0px;
   height: 1vh;
   width: 100%;
   background-color: rgba(0,0,0,0.6);
   cursor: pointer;
}

.bar {
   background-color: orangered;
   width: 0%;
   height: 100%;
   transition: 0.5s ease;
}

.subtitle {
   color: white;
}


.subtitle p {
   font: 15px/1.25 Georgia, sans-serif;
/*   text-transform: uppercase;*/
   margin-bottom: 1rem;
   line-height: 45px;
   display: inline-block;
/*   width: 300px;*/
}

.highlight {
   display: inline;
   background: black;
   color: white;
   padding: 0.7rem;
   padding-left: 0;
   padding-right: 0;
/*   box-shadow: 10px 0 0 #ee4035, -10px 0 0 #ee4035;   */
}

.photocaption {
   color: white;
   line-height: 1.8em;
   margin-top: 20px;
}


/*.header {
   font-family: 'Georgia';
   color: white;
}
*/





/*media query for responsive design */

@media only screen and (max-width: 640px) {

   .desktop {
      display: none;
   }

   .mobile {
      display: block;
   }

   .nav {
      color: orangered;
   }


}











