* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
  cursor: default;
}

body {
  background: linear-gradient(
    to right,
    rgb(249, 250, 249) 0,
    rgb(249, 250, 249) calc(100% - 10px),
    rgb(0, 255, 0) calc(100% - 2px),
    rgb(0, 255, 0) 90%
  );
  color: rgb(8, 0, 0);
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header {
  padding: 10rem 0 0 10rem;
}
h1,
h2 {
  color: rgb(65, 245, 0);
}
h1 {
  font-family: Roboto, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.8;
}
h2 {
  font-family: serif;
  font-size: 4.4rem;
  font-weight: 500;
}

.contact {
  width: 80%;
  margin: 0.1rem 7% 0 5rem;
  padding: 2rem;
}

ul {
  list-style: none;
  flex-direction: row;
  display: flex;
  justify-content: flex-end;
}
a {
  text-decoration: none;
  font-family: Roboto, sans-serif;
  color: rgb(65, 245, 0);
  transition: color 0.3s ease-in-out;
  font-size: 0.8rem;
}

a:hover {
  color: rgb(255, 0, 255, 0.6);
}

#cursor-circle {
  position: fixed;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  background: rgb(255, 0, 255);
  filter: blur(3px);
  mix-blend-mode: screen;
  left: -100px;
  top: 50%;
  z-index: 10000;
  transition: all 30ms ease-out;
}

@media (max-width: 600px) {
  html {
    cursor: auto;
  }

  #cursor-circle {
    display: none;
  }

  header {
    padding: 5rem 0 0 4rem;
  }

  h1 {
    font-family: Roboto, sans-serif;
    font-size: 2rem;
  }
  h2 {
    font-family: serif;
    font-size: 2.2rem;
  }
  .contact {
    width: 80%;
    margin: 0.1rem 7% 0 4rem;
    padding: 2rem;
  }
  a {
    font-size: 0.8rem;
  }

  ul {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
  }
}
