body {
  overflow-x: hidden;
}

html {
  overflow-y: scroll;
}

/* Curve transition styles */
.curve-container {
  position: fixed;
  top: 100vh;
  left: 0;
  width: 100vw;
  height: calc(100vh + 600px);
  pointer-events: none;
  z-index: 999;
}

.curve-container svg {
  width: 100%;
  height: 100%;
}

.curve-container svg path {
  fill: #1d6383;
}

.route-text {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 46px;
  z-index: 1000;
  text-align: center;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  z-index: 1000000;
  width: 10rem;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* background-color: black; */
  z-index: 998;
  pointer-events: none;
  opacity: 1;
  /* display: block; */
}
.background-overlay img {
  width: 10rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

html,
body {
  /* Keep scrolling active */
  overflow-y: scroll;
}

/* Chrome, Safari, Edge */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html,
body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and old Edge */
}
