/* 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=Cutive&family=Righteous&display=swap');

/*main css*/


* {
   box-sizing: border-box;
}

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

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

.header {
   position: sticky;
   top: 0px;
   z-index: -1;
}

.title {
   width: 90%;
   position: absolute;
   left: 10%;
   top: 50%;
/*   background-color: black;*/
   color: white;
   padding: 40px;
}


.twopiece {
   display: grid;
   grid-template-columns: 1fr 1fr;
   background-color: black;   
   color: white;
   position: relative;
}



.credit {

   position: absolute;
   top: -40px;
   padding-left: 10px;

}

.sidepic {
   position: relative;
}

.credit2 {

   position: absolute;
   left:-120px;
   z-index: 3;
   transform: rotate(90deg);
   top: 200px;
   padding-left: 2px;
   padding-right: 5px;

}

.sidepic img {
   position: sticky;
   top: 0px;
   height: 100vh;
   object-fit: cover;
}

.sidetext {
   padding: 20px;
   font-size: 1.5em;
   padding-bottom: 50vh;
   background-color: #281616;
   line-height: 1.8em;  
   color: white;   
}
aca696




.ida {
   background-color:#aca696 ;

}


.bigvideo {
   background-color: black;
   padding: 20px 80px;
}


.widepic {
   position: sticky;
   top: 0px;
   z-index: -1;
   height: 100vh;
}

.widepic img {
   object-fit: cover;
   height: 95%;
}

.scrolltext {
   margin: auto;
   width: 90%;
   color: white;
   padding-bottom: 10vh;
   padding-top: 20px;
   position: relative;
}


.timeline { 
   width: 100%;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
   text-align: center;
   padding: 5%;
   background-color: #1f1f1f;


 }
.item{

   position: relative;
}

 .dropdown{
   position: absolute;
   bottom: -100px;
   left: 0px;
   display: none;
   border: 2px solid black;
   background-color: white;
   padding: 20px;
   color: black;

 }






.footer {
   background-color: black;
   color: white;
   padding: 10px 30px;
}



/*media query for responsive design */

@media only screen and (max-width: 640px) {
   .twopiece {
      grid-template-columns: 1fr;

   }

}











