body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #003e78;
  overflow: hidden;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 66%;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

video {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 5%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  background-color: transparent;
}

.dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.individual-video-container {
  position: fixed;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  display: none;
  z-index: 1001;
}

.individual-video-container video {
  width: ;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
