@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Poppins:wght@100;400;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  -webkit-tab-highlight-color: transparent;
  cursor: none;
  user-select: none;
  -webkit-user-drag: none;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-color: #292929;
}

h1 {
  font-size: 8vh;
  text-transform: uppercase;
  color: #ffffff;
}

p {
  font-weight: 600;
  color: #cfcfcf;
}

.cursor {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  pointer-events: none;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 10000;
}

.cursor-f {
  width: var(--size);
  height: var(--size);
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/rect-cursor.png);
  background-size: cover;
  mix-blend-mode: difference;
  pointer-events: none;
  opacity: 0.3;
  z-index: 10000;
}
