.video-container {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.video-container video:hover {
  transform: scale(0.8);
}