/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#changingVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ccc;
  border-radius: 5px;
  object-fit: cover; /* Maintain aspect ratio while filling container */
}

.initial-size {
  width: 80%; /* Set your desired initial width here */
  height: auto;
}
