* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}
body {
  font-family: "Supreme", monospace;
  background-color: #0d0d0e;
  color: #f2df70;
  color: rgb(138, 243, 171);
  height: max-content;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.main {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 70%;
  height: 100%;
  gap: 20px;
  align-items: center;
}
.text {
  padding: 20px 20px;
  overflow-y: scroll;
  font-family: "Supreme", monospace;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: justify;
  width: 70%;
  gap: 20px;
}
#text:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(1.5);
}
.date:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(2);
}

#heading {
  font-family: "Clash Display", monospace;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding-top: 30px;
  /* border: 2px solid red; */
}
#heading:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(4);
}

#blog-preloader {
  display: none;
}
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: #f2df70;
  background: rgb(138, 243, 171);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

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

a {
  text-decoration: none;
  color: #b6fc84;
  cursor: pointer;
}
