body {
  font-family: Arial, sans-serif;
}

.lightbox {
  display: none;
  position: relative;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

/*adjust the size of the lightbox */
.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100dvh;
}

.lightbox-content > video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* display: block; */
  /* aspect-ratio: 68/45; */
  /* aspect-ratio: 16/9; */
}

.close {
  position: fixed;
  top: 10px;
  right: 25px;
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  z-index: 50;
}

.controls {
  text-align: center;
  margin-top: 10px;
  display: none;
}

.controls button {
  margin: 5px;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}
