body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
}

.video-container {
  position: relative;
  height: 100vh;
  width: 100%;
  cursor: pointer;
}

#myVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3em;
  text-align: center;
  padding: 0.25em 0.25em;
  border: 8px solid white;
  background: none;
  letter-spacing: 1px;
  min-width: 55%;
}

.info-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background-color: rgba(255,255,255,0.9);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Helvetica, Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: background-color 0.2s;
}

.info-button:hover {
  background-color: white;
}

.info-button {
  position: fixed;
  bottom: 20px;
  right: 25px;
  background: white;
  color: black;
  border: 1px solid black;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  z-index: 10;
  transition: background 0.2s ease;
}

.info-button:hover {
  background: #f0f0f0;
}

/* Popup background (overlay) */
.info-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  z-index: 9;
}

/* When active */
.info-popup.show {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

/* Content box */
.info-content {
  position: relative;
  background: white;
  color: black;
  width: 55%;
  overflow-y: auto;
  padding: 2em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: thin; 
  font-size: 0.8em;
  line-height: 1.5em;
}


.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: black;
  cursor: pointer;
}

.close-btn:hover {
  opacity: 0.6;
}

