* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
#main {
  position: relative;
  overflow: hidden;
}
#page {
  height: 100vh;
  width: 100vw;
  background-color: #f1f1f1;
  position: relative;
}
#page1 {
  height: 100vh;
  width: 100vw;
  background-color: #f1f1f1;
  position: relative;
}
#page2 {
  height: 100vh;
  width: 100vw;
  background-color: #f1f1f1;
  position: relative;
}
#page3 {
  height: 100vh;
  width: 100vw;
  background-color: #f1f1f1;
  position: relative;
}
canvas {
  position: relative;
  z-index: 9;
  max-width: 100vw;
  max-height: 100vh;
}
#loop {
  height: 25%;
  width: 100%;
  position: absolute;
  top: 30%;
  font-size: 100px;
  white-space: nowrap;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  display: flex;
}
#loop h1 {
  font-weight: 400;
  animation: anim;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
#loop h1 span {
  -webkit-text-stroke: 1.2px #000;
  color: transparent;
  font-weight: 500;
}
@keyframes anim {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
#nav {
  height: 7%;
  width: 100%;
  position: fixed;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
#nav > h3 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 400;
  font-size: 22px;
}
#nav button {
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff;
  background-color: black;
  border: none;
}
#page > h3 {
  position: absolute;
  top: 55%;
  font-weight: 400;
  color: #4d4d4d;
  left: 5%;
}
#page > h4 {
  position: absolute;
  top: 65%;
  left: 30%;
  font-weight: 400;
}
#page1 > #right-text {
  position: absolute;
  top: 30%;
  left: 15%;
}
#page1 > #right-text > h3 {
  font-weight: 400;
  color: #7c7c7c;
}
#page1 > #right-text > h1 {
  line-height: 1.5;
  font-size: 40px;
}
#page1 > #left-text {
  position: absolute;
  top: 50%;
  right: 15%;
  text-align: end;
}
#page1 > #left-text > h1 {
  font-size: 40px;
  line-height: 1.5;
}
#page1 > #left-text > h3 {
  font-weight: 400;
  color: #7c7c7c;
}
#page2 > #text1 {
  position: absolute;
  top: 30%;
  left: 10%;
}
#page2 > #text1 > h3 {
  font-weight: 400;
  color: #7c7c7c;
}
#page2 > #text1 > h1 {
  font-size: 60px;
  line-height: 1.5;
}
#page2 > #text2 {
  position: absolute;
  top: 55%;
  right: 10%;
}
#page2 > #text2 > p {
  font-weight: 400;
  text-align: end;
}
#page3 > #left-para {
  position: absolute;
  top: 30%;
  left: 8%;
}
#page3 > #left-para > p {
  text-align: start;
  font-weight: 400;
  line-height: 1.4;
  color: #7c7c7c;
}
#page3 > #right-para {
  position: absolute;
  top: 50%;
  right: 15%;
}
#page3 > #right-para > h3 {
  font-weight: 400;
  color: #7c7c7c;
}
#page3 > #right-para > h1 {
  line-height: 1.5;
  font-size: 50px;
  text-align: end;
}
