* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a:hover {
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Poppins";
  cursor: none;
}

nav {
  display: flex;
  justify-content: space-between;
  width: 90%;
  min-height: 10vh;
  align-items: center;
  margin: auto;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.nav-links li {
  padding: 1rem;
}

.nav-links,
h1 {
  flex: 1;
}

.cursor {
  width: 3rem;
  height: 3rem;
  border: 2px solid black;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.3s ease;
  transition-property: background, transform;
  transform-origin: 100% 100%;
  z-index: -1;
  backdrop-filter: grayscale();
}

.link-grow {
  transform: scale(1.5);
  background: black;
}

.hovered-link {
  color: white;
}

