.video-container {
    position: relative; /* Needed for absolute positioning of the border */
    width: 80%; /* Match video width */
    height: 220px; /* Match video height */
    border: 2px solid #ccc; /* Border with desired width and color */
    margin: 0 auto; /* Center the container horizontally */
    padding-top: 5px;
    padding-bottom: 5px;
  }

  /* Styles for the video element */
  #video {
    position: absolute; /* Positioned within the container */
    top: 0; /* Align to top of container */
    left: 0; /* Align to left of container */
    width: 100%; /* Fill the entire container */
    height: 100%; /* Fill the entire container */
  }