* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  background: #223;
  font-size: 62.5%;
  font-family: "Helvetica", sans-serif;
  color: #fdf;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: none;
}
main .cursor {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fdf;
  position: absolute;
  mix-blend-mode: difference;
}
main h1 {
  text-transform: uppercase;
  font-size: 11vw;
  transition: all 0.3s ease;
}
main h1:hover {
  color: #ff6b6b;
  transform: scale(1.1);
  mix-blend-mode: difference;
}

/*# sourceMappingURL=style.css.map */
