body {
  width: 100vw;
  height: 100vh;
  cursor: url('./wand.png'), auto;
  overflow: hidden;
}

.effect {
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  position: absolute;
  animation: 1.5s forwards animate;
  pointer-events: none;
}

@keyframes animate {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(100);
  }
}

div#curses {
  position: fixed;
  bottom: 0;
  padding: 70px;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}

button.curse {
  cursor: url('./wand.png'), auto;
  font-size: 20px;
  user-select: none;
  background: transparent;
}

button.curse.selected {
  background: black;
  color: white;
}

button.curse:hover {
  outline: 1px solid black;
}
