/* reset */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: sans-serif;
  background: #000;
}

/* cursor */

.cursor {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%) translateY(-50%);
  mix-blend-mode: difference;
}

/* main */

.main {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

h1 {
  font-size: 20vmin;
  font-weight: 300;
}

p {
  font-size: 4vmin;
  font-weight: 300;
}
