body{
  overflow: hidden;

}

.main{
  width: 100vw;
  height: 100vh;
  background-color:black;
}

.container{
  height: 100%;
}

.video{
  
  width:calc(100vw - 75vh);
  height: 100%;
  left: 0;
  position: fixed;

}

.video iframe{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
}

.back{
  font-size: 1.1em;
  letter-spacing: 0.1em;
  color: white;
  padding: 2.5vh;
  position: absolute;
  left: 0;
  z-index: 3;
}

.back a{
  text-decoration: none;
  color: white;
}

.creditsalt{
  font-size: 1.2em;
  cursor: pointer;
  color: white;
  padding: 2.5vh;
  position: absolute;
  right: 0;

}



.creditsalt:hover +.creditsshow{
  display: block;
}

.creditsshow{
  display: none;
  background-color: white;
  padding: 2.5vh;
  margin: 2.5vh;
  border:solid 1px;
  line-height: 1.2em;
  font-weight: bold;
  position: absolute;
  right: 0;
  z-index: 2;
}

.grid {
  position: absolute;
  height: 100vh;
  /*width: 30vw;
  top: 50%;
  transform: translate(0%, -50%);*/
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(25vh, 1fr));
  /*create columns repeat at least 2 columns which are 1fractions each and scale to a minimum of 200px*/
  /*grid-gap: 1rem;*/

  
}

.grid > div {
  background-color: rgba(255, 255, 255, 0);
  padding: 1rem;
  position: relative;
}

/*pseudo element to force squares*/

.grid div img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.creditdiv:hover >.creditshide{
 display: block;
}

.creditdiv{
  grid-area: 3 / 2 / 4 / 4;
}


.credits{
  font-size: 0.5em;
  text-align: right;
  position: absolute;
  bottom: 2em;
  right: 2em;
  z-index: 1;
}

.creditshide{
  display: none;
  font-size: 0.5em;
  text-align: right;
  position: absolute;
  bottom: 2em;
  right: 2em;
  z-index: 1;
}

#blank{
  z-index: 0;
}