#videoModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
  opacity: 0;
  /* transition: opacity 0.5s ease-in-out; */
}

#videoModal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  height: auto;
  max-width: 80rem;
  /* max-height: 90%; */
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}

.video-modal-container {
  width: 100%;
  height: auto;
}
