html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.vjs-big-play-button {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  font-size: 40px !important;
  background: #ff8000 !important;
  color: #fff !important;
  border-radius: 50%;
  padding: 15px !important;
  border: none !important;
  z-index: 1000;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}
.vjs-big-play-button:hover {
  background: #e65c00 !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
}
.vjs-text-track-display {
  background: transparent !important;
  color: #fff !important;
  font-size: 16px !important;
}
