@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap");

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}
html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  color: #f1f5f9;
}
nav {
  position: fixed;
  z-index: 10;
  backdrop-filter: blur(10px);
  border-color: #f1f5f9;
  border-bottom-width: 1px;
}
#main {
  position: relative;
  overflow: hidden;
  background-color: #001a2b;
}
#page {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-size: 100% 100%;
  background-position: 0px 0px;
  background-image: radial-gradient(
    65% 75% at 50% 105%,
    #073affff 21%,
    #001a2b 100%
  );
}
.ray-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 130vw; /* full viewport width */
  height: 50vh; /* half viewport height */
  bottom: 0; /* stick to bottom */
  /* make a bottom semicircle: wide ellipse clipped to bottom */
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
  background-color: white;
  background-blend-mode: color-burn;
}
.ray-container2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 130vw; /* full viewport width */
  height: 48vh; /* half viewport height */
  bottom: 0; /* stick to bottom */
  /* make a bottom semicircle: wide ellipse clipped to bottom */
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
  background-color: #001a2b;
}

#page1 {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #001a2b;
}
#page2 {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #001a2b;
}
#page3 {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #001a2b;
}
canvas {
  position: relative;
  z-index: 9;
  max-width: 100vw;
  max-height: 100vh;
}
