body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }
  
  #main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  #video-container {
    position: relative;
    width: 80vw;
    max-width: 800px;
  }
  
  video {
    width: 75%;
    height: 50%;
  }
  
  .hidden {
    display: none;
  }
  
  .glitch {
    /* Add your glitch effect styles here */
  }
  