   body {
      margin: 3;
      overflow: hidden;
      position: center;
      font-family: "Lucida Console", Courier, monospace;
      color: white;
      font-size: 1.2em;
      padding-left: 20px;
    }
    .video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Video styling */
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
    #overlay {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.5);
      padding: 1px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }