* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #0d0d0e;
  height: 100vh;
  width: 100vw;
  color: #9f91f9;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  font-family: "Supreme", monospace;
  cursor: none;
}

.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: 100%;
}
#heading:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(3);
}
#heading-text {
  text-decoration: underline;
  text-align: center;
}
#page-logo {
  width: 70px;
}
#text {
  width: 60%;
  font-size: 18px;
  /* border: 2px solid red; */
}
#text:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(1.5);
}

.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;
}

h2 {
  text-decoration: underline;
}

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

@media screen and (max-width: 767px) {
  #heading {
    font-size: 26px;
  }
  #text {
    width: 90%;
  }
  .cursor {
    visibility: hidden;
  }
  .main {
    width: 90%;
  }
}
