* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: gilroy;
}
html,
body {
  height: 100%;
  width: 100%;
}
#main {
  position: relative;
  overflow: visible;
}
#page {
  position: relative;
  height: 100vh;
  width: 100vw;
  /* background-color: #ade0e5; */
  background: radial-gradient(circle, #fbc2eb, #a6c1ee);
}
#page1 {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #ade0e5;
  background: radial-gradient(circle, #fbc2eb, #a6c1ee);
}
#page2 {
  position: relative;
  height: 100vh;
  width: 100vw;
  /* background: radial-gradient(circle, #fbc2eb, #a6c1ee); */
  background: linear-gradient(to right, #a8edea, #fed6e3);
}
#page3 {
  position: relative;
  height: 100vh;
  width: 100vw;
  /* background: linear-gradient(to right, #ff9a9e, #fad0c4); */
  background: linear-gradient(to right, #a8edea, #fed6e3);
}
canvas {
  position: relative;
  z-index: 9;
  max-width: 100vw;
  max-height: 100vh;
}
#loop {
  display: flex;
  position: absolute;
  top: 30%;
  height: 25%;
  width: 100%;
  font-size: 100px;
  white-space: nowrap;
  font-family: "Courier New", Courier, monospace;
  color: #483242;
}
#loop > h1 {
  font-weight: 400;
  animation-name: anim;
  animation-duration: 15s;
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7%;
  width: 100%;
  position: fixed;
  z-index: 99;
  padding: 0px 30px;
}
#nav > h3 {
  font-family: gilroy;
  font-weight: 400;
  font-size: 22px;
  color: #483242;
}
#nav>h3>span{
  -webkit-text-stroke: 0.6px black ;
  color: transparent;
  font-weight: 500;
}
#nav > button {
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 20px;
  background-color: #483242;
  color: #fff;
  border: none;
  cursor: pointer;
  vertical-align: middle; 
}

#github img {
  width: 24px;
  height: 24px;
  vertical-align: middle;    /* ensures perfect centering */
  filter: invert(1);         /* make icon white (optional) */
}

#nav button:hover {
  background: linear-gradient(45deg, #763f6b, #09095d);
  box-shadow: 0 0 20px #713471, 0 0 30px #753e79;
  color: #fff;
  transform: scale(1.08) rotate(1deg);
}

#page > h3 {
  position: absolute;
  top: 65%;
  font-family: gilroy;
  font-weight: 400;
  color: #5d5036;
  left: 5%;
}
#page > h4 {
  position: absolute;
  top: 73%;
  left: 25%;
  font-family: cursive;
  font-weight: 500;
}
#page1 > #right-text {
  position: absolute;
  top: 30%;
  left: 10%;
}
#page1 > #right-text > h3 {
  font-weight: 400;
  color: #7c7c7c;
}
#page1 > #right-text > h1 {
  line-height: 1.5;
  font-size: 40px;
  color: #483242;
}
#page1 > #left-text {
  position: absolute;
  top: 50%;
  right: 5%;
  text-align: end;
}
#page1 > #left-text > h1 {
  font-size: 40px;
  line-height: 1.5;
  color: #483242;
}
#page1 > #left-text > h3 {
  color: #7c7c7c;
  font-weight: 400;
}
#page2 > #text1 {
  position: absolute;
  top: 20%;
  left: 10%;
}
#page2 > #text1 > h3 {
  color: #7c7c7c;
  font-weight: 400;
}
#page2 > #text1 > h1 {
  font-size: 50px;
  line-height: 1.4;
  color: #483242;
}
#page2 > #text2 {
  position: absolute;
  top: 55%;
  right: 4%;
  text-align: end;
}
#page2 > #text2 > p {
  color: #859b93;
  font-weight: 500;
}
#page3 > #text3 {
  position: absolute;
  top: 40%;
  right: 5%;
  text-align: end;
}
#page3 > #text3 > h3 {
  color: #7c7c7c;
  font-weight: 400;
}
#page3 > #text3 > h1 {
  font-size: 60px;
  color: #483242;
}
#footer {
  text-align: center;
  padding: 20px;
  color: #fff;
  background: #483242;
  font-family: "Orbitron", sans-serif;
}
