.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.video-wrapper {
  position: relative;
  padding-bottom: 48.25%; /* Adjust this value to change the aspect ratio (e.g., 16:9 = 56.25%) */
  width: 100%;
  max-width: 900px; /* Adjust this value to limit the maximum width of the video */
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
