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

.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 {
  width: fit-content;
  font-size: 22px;
  font-family: "Supreme", monospace;
  gap: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#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;
}

#list {
  display: flex;
  gap: 20px;
  font-family: "Clash Display", monospace;
  font-weight: 500;
}
a.page-links {
  text-decoration: none;
  color: #9cf49d;
  opacity: 90%;
  font-size: 30px;
}

li.contact-options {
  display: inline-block;
  position: relative;
  color: #0d0d0e;
  text-decoration: none;
}
#insta {
  color: #0d0d0e;
  padding: 5px 10px;
  border-radius: 20px;
  background-color: #9cf49d;
}
#insta:hover {
  background-color: #0d0d0e;
  color: #9cf49d;
}
#email {
  color: #0d0d0e;
  padding: 5px 10px;
  border-radius: 20px;
  background-color: #9cf49d;
}
#email:hover {
  background-color: #0d0d0e;
  color: #9cf49d;
}

.contact-form {
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#name-inp {
  line-height: 30px;
  width: 100%;
  font-size: 20px;
  font-family: "Supreme", monospace;
  text-align: start;
  background-color: #0d0d0e;
  color: #9cf49d;
  border: 2px solid #9cf49d;
  border-radius: 10px;
  padding: 5px 20px 5px 20px;
}

#email-inp {
  line-height: 30px;
  font-size: 20px;
  width: 100%;
  font-family: "Supreme", monospace;
  text-align: start;
  background-color: #0d0d0e;
  color: #9cf49d;
  border: 2px solid #9cf49d;
  border-radius: 10px;
  padding: 5px 20px 5px 20px;
}

#body-inp {
  font-size: 20px;
  width: 100%;
  font-family: "Supreme", monospace;
  text-align: start;
  background-color: #0d0d0e;
  color: #9cf49d;
  border: 2px solid #9cf49d;
  border-radius: 10px;
  padding: 5px 20px 5px 20px;
}

#send-btn {
  width: 100%;
  line-height: 22px;
  font-size: 20px;
  font-weight: 500;
  font-family: "Clash Display", monospace;
  text-align: center;
  background-color: #9cf49d;
  color: #0d0d0e;
  border: 2px solid #9cf49d;
  border-radius: 10px;
  padding: 4px 10px 4px 10px;
}
#send-btn:hover {
  cursor: none;
  background-color: #0d0d0e;
  color: #9cf49d;
}

#contact-text {
  font-family: "Clash Display", monospace;
  font-weight: 500;
  font-size: 24px;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #9cf49d;
  opacity: 70%; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9cf49d;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #9cf49d;
}
#orientation-error {
  font-family: "Clash Grotesk", monospace;
}

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

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