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

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

#heading {
  gap: 30px;
  display: flex;
  /* border: 2px solid red; */
  font-family: "Clash Display", monospace;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
#heading:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(3);
}
#heading-text {
  text-decoration: underline;
  text-align: center;
}
#page-logo {
  width: 70px;
}
#text {
  /* border: 2px solid red; */
  text-align: left;
  font-size: 18px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

#text:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(1.5);
}
a {
  font-family: "Supreme", monospace;
  font-size: 18px;
  text-decoration: underline;
  text-decoration-color: #bdf280;
  color: #80f2a6;
}

.preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  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: #80f2a6;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

@media screen and (max-width: 767px) {
  .cursor {
    visibility: hidden;
  }
  #text {
    width: 100%;
    align-items: start;
  }
  a {
    width: 100%;
  }
}
