* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  cursor: none;
  background-color: #03001c;
  background-color: #0d0d0e;
  height: 100vh;
  width: 100vw;
  color: #e995d6;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  font-family: "Supreme", monospace;
  overflow: scroll;
}

.main {
  position: relative;
  top: 30px;
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 90%;
  gap: 30px;
  align-items: center;
}

#heading {
  gap: 30px;
  display: flex;
  font-family: "Clash Display", monospace;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

#heading:hover ~ .cursor {
  transform: translate(-50%, -50%);
  transform: scale(3);
}

#heading-text {
  text-decoration: underline;
  text-align: center;
}
#page-logo {
  width: 70px;
}
#text {
  overflow: hidden;
  width: 50%;
  font-size: 18px;
  text-align: left;
}
#text:hover ~ .cursor {
  transform: translate(-50%, -50%);
  transform: scale(1.5);
}

.preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #03001c;
  background-color: #0d0d0e;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  gap: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.preloader.fade {
  opacity: 0;
}
#page-loader {
  width: 100px;
  position: relative;
  bottom: 10px;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: #e995d6;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
  color: #0d0d0e;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30px;
  background-color: #e995d6;
  cursor: pointer;
}
.mobile-footer {
  display: none;
}

.footer,
a {
  color: #0d0d0e;

  text-decoration: none;
}

.fa-solid {
  display: none;
}
@media screen and (max-width: 767px) {
  .cursor {
    visibility: hidden;
  }
  .main {
    align-items: self-start;
    overflow: scroll;
  }
  #text {
    width: 90%;
    overflow: scroll;
  }
  body {
    height: 100vh;
  }
  .footer {
    display: none;
  }
  .mobile-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    color: #0d0d0e;
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    height: 30px;
    background-color: #e995d6;
    cursor: pointer;
    border-radius: 20px;
  }
}

#hypcontact {
  text-decoration: underline;
  cursor: pointer;
  color: #e995d6;
}
