html, body {
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  overflow-y: auto;
}

#background-video {
  object-fit: cover;
  z-index: -2;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

#bg-container {
  z-index: -1;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #fcfcfc;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#content {
  min-height: 200vh;
  padding: 40px;
}

#menu {
  z-index: 100;
  pointer-events: auto;
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

#menu ul {
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

#menu li {
  color: #fff;
  cursor: pointer;
  background: none;
  border-radius: 6px;
  padding: 10px 15px;
  font-family: Calibri, sans-serif;
  font-size: 2vw;
  font-weight: bold;
  transition: background .3s, transform .2s;
}

#menu li:hover {
  background: #ffffff4d;
  transform: scale(1.1);
}

#three-canvas {
  z-index: 1;
  pointer-events: none;
  width: 40vw;
  height: 40vh;
  position: absolute;
  top: 0;
  right: 0;
}

#text-overlay {
  z-index: 10;
  text-align: left;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: large;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#text-overlay h1, #text-overlay h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 2vw;
}

#text-overlay p {
  text-align: justify;
  font-size: 45px;
  line-height: 1.6;
}

.topright {
  z-index: 100;
  padding: 5px;
  font-size: 1.2vw;
  position: absolute;
  top: 16px;
  right: 20px;
}

a {
  text-decoration: none;
  color: #fff !important;
}

a:hover {
  text-decoration: none;
  color: #080000b3 !important;
}
/*# sourceMappingURL=index.3a01df49.css.map */
