.animation-container {
    /* text-align: center; */
     display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    
  }
  
  .glitch-video {
    width: 100%;        /* responsive width */
    max-width: 600px;   /* optional max size */
    display: block;
    margin: 0 auto 0px auto; /* spacing below video */
  }

.benter {
    opacity: 0;
  pointer-events: none;
  transition: opacity 1.8s ease;
    position: absolute;
    top: calc(50% + 220px); /* adjust depending on video height */
    left: 50%;
    transform: translateX(-50%) translateY(340px);
    /* text-align: center; */
    margin: auto;
    width:250px;
    height: 60px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0,0);
    border: 2px solid rgb(255, 255, 255);
    padding: 10px 24px;
    font-size: 1.2em;
    font-family: 'Orbitron';
    /* align-items: center;
    justify-content: center; */
  
  }
  .benter:hover{
    color:rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 0, 0);
    transition: color 0.6s ease;
    transition: background-color 0.6s ease;
    transition: border 0.6s ease;
  
  
  }
  .benter.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  body {
    background-color: black;
    margin: 0;
    padding: 0;
    overflow: hidden; /* stops any scroll bounce on mobile */
  }

  @media (max-width: 768px) {
.animation-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10vh;
}

.glitch-video {
  width: 100%;
  max-width: 100%;
}
.benter {
  margin-top: -10vh;
}
}