:root {
    --dk-color:#e8c088;
    --mid-color:#E4E6C3;
    --lt-color:#F7F7F2;
    --dkest-color:#261C15;
    --accent:#4b7ed7;
    --hover-color: #ffeab9; 
    --blue:#4b7ed7;
    --burgundy: #912e50; /* | */

    
 }

 @font-face {
  font-family: disco;
  src: url(/fonts/DigitalDisco-Thin.ttf);
}

h1{
    font-family: disco;
    font-size: xxx-large;
    font-weight: 100;
    padding: 10px;
    color: white;
    line-height: .70;
    padding-left: 0px;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}


header {
   height:100px;
   width: 98%;
   margin: 0 auto;   
}

body{
   background-image: url(/assets/movie_theater/backyard_stock.jpg);
   background-size: cover;
  background-repeat: no-repeat;
  background-color: rgb(7, 7, 7);
  margin: auto;
    width: 90%;
    height: 100%;
    overflow-y: hidden;
}

.video_container{
    position: absolute;
    left: 50%;
   transform: translateX(-50%);
    max-width: 100%;
    margin: 0 auto;
}
.bedsheet{
    position: absolute;
    left: 50%;
   transform: translateX(-49%);
    top:-200px;
    z-index: -1;
    width: 1160px;
    height: 1000px;
    background-image: url(/assets/movie_theater/bedsheet.png);
    background-size:contain;
   background-repeat: no-repeat;

}
.main-content{
   position: relative;
   margin: auto;
   width: 90%;
   height: 100%;
}

.byline{
   margin-top: -15px;
   width: fit-content;
   padding: 10px;
   border-radius: 5px;
   color: white;
   background-color: rgb(65, 62, 62);
}

.back_to_home{
	position: block;
   display: inline-block;
   margin: 1% 0%;
	padding: 3px;
	border-radius: 4px;
   color:white;
	border: 2px solid rgb(122, 121, 121);
   background-color: rgb(65, 62, 62);
}

.undecorated-link{
   color:white;
   text-decoration: none;
}

.back_to_home:hover{
	background: var(--burgundy);
}

.projector{
   position: fixed;
   bottom: -80px;
   right: 0;
   width: 471px;
    height:481px;
    background-image: url(/assets/movie_theater/projector_01.png);
    background-size:contain;
   background-repeat: no-repeat;
   animation: projection 5s infinite ;
}

@keyframes projection{
   0% {background-image: url(/assets/movie_theater/projector_01.png) }
   25% {background-image: url(/assets/movie_theater/projector_02.png)}
   50% {background-image: url(/assets/movie_theater/projector_03.png);}
   75% {background-image: url(/assets/movie_theater/projector_02.png);} 
   
}


/*OLD AFTER HERE*/

.home_bar{
   width: 100%;
   margin: auto;
   height:30px;
   background-color: none;
}

header{
   padding: 0px;
   height: auto;
   width: 100%;
}

.footer{
   text-align: center;
   color: var(--blue);
   padding: 10px;
}

@media only screen and (min-width: 720px) {
   .no-desktop{
      display: none;
   }
}


@media only screen and (max-width: 720px) {
   .no-mobile{
      display: none;
   }

   body{
      background-image: url(/assets/movie_theater/backyard_stock_vertical.jpg);
      background-size: cover;
      background-repeat: no-repeat;
}

.main-content{
   display: block;
   text-align: center;
   margin: auto;
   padding: 0%;
   width: 90%;
   height: 100%;
   background-color: unset;
   border: unset;
}


.video_container{
   left: unset;
   transform: unset;
   position: absolute;
   display: block;
   max-width: 100%;
   margin-left: auto;
   margin-right: auto;
   left: 0;
   right: 0;
   text-align: center;
   top: 30px;
}
.bedsheet{
    position: absolute;
    display: block;
    top:-60px;
    z-index: -1;
    width: 460px;
    background-image: url(/assets/movie_theater/bedsheet.png);
    background-size:contain;
   background-repeat: no-repeat;
   
   margin-left: auto;
   margin-right: auto;
   left: 0;
   right: 0;
   text-align: center;
   overflow: hidden;
   left: 50%;
   transform: translateX(-50%);

}

.projector{
   bottom: 0;
   right: 0;
   width: 235px;
    height:200px;
}

}