
/* Overlay Background - Darkens the page */
.overlay-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.overlay-background.active {
  display: block;
}

/* Video Overlay Container */
.video-overlay {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  z-index: 1000;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-overlay.active {
  display: block;
}

.video-overlay video {
  width: 100%;
  height: auto;
  display: block;
}

/* Close button */
.close-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: background-color 0.3s;
}

.close-overlay:hover {
  background-color: rgba(255, 255, 255, 1);
}

a {
  cursor: pointer;
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.button:hover {
	  text-decoration:  none;

}