.main-vid{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.main-date{
  position: absolute;
  width: 100%;
  bottom: 13%;
  text-align: center;
  color: var(--bg-primary);
}
.pop{
  position: absolute;
  width: 100%;
  left: 2%;
  bottom: 2%;
  color: var(--bg-primary);
  animation: blink_smooth 1.7s infinite;
  cursor: default;
}
@keyframes blink_smooth {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.8;
  }
}
.fancy-font{
  font-family: "Kepler 3 VF Display", serif;
  font-size: 24px;
}
.footer{
  width: 100%;
  height: 56px;
  margin-top: -56px;
}
.scroll-down{
  color: var(--bg-primary);
  font-size: 32px;
  text-decoration: none;
  font-weight: 300;
  cursor: pointer;
  z-index: 100;
}
.poster{
  width: 100%;
  height: auto;
  padding: 4% 3%;
  background-image: url("../img/edit.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: repeat-y;
  background-size: 120%;
  animation: parallax linear;
  animation-timeline: scroll();
  flex-direction: row-reverse;
  gap: 16px;
  position: relative;
}

@keyframes parallax {
  from {
    background-position: bottom 0 center;
  }
  to {
    background-position: bottom -80px center;
  }
}

.poster-img img{
  width: 65%;
}
.poster .text{
  margin-top: 16px;
  text-align: right;
}
.logo{
  position: absolute;
  bottom: 16px;
  left: 2%;
  height: 32px;
  width: auto;
}

@media (orientation: portrait) {
  .poster{
    background-image: url("/img/edit_mobile.png");
    flex-direction: column;
    width: 100vw;
  }
  .poster img{
    justify-self: center;
    margin: 0 auto;
  }
  .poster .text{
    margin-top: 8px;
    text-align: center;
  }
}
@media screen and (max-width: 1024px){
  .poster{
    background-size: 150%;
  }
  @keyframes parallax {
    from {
      background-position: bottom 0 center;
    }
    to {
      background-position: bottom -30px center;
    }
  }
}
@media screen and (max-width: 500px){
  .main-vid{
    height: 100%;
    width: auto;
    margin-top: -5%;
  }
  .pop{
    text-align: center;
    bottom: 6%;
  }
  .poster{
    background-image: url("/img/edit_mobile.png");
    background-size: 120%;
    background-position: center 40%;
    background-repeat: no-repeat;
    animation: none;
    padding: 10% 0;
  }
  .logo{
    bottom: 8px;
    left: 3%;
    height: 24px;
  }
  .logo img{
    object-fit: contain;
  }
}
