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

body {
  font-family: 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  background: white;
  border: 4px solid black;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  background: #FF006E;
  border: 4px solid black;
  cursor: pointer;
  box-shadow: 2px 2px 0px black;
}

input[type="range"]::-moz-range-thumb {
  width: 30px;
  height: 30px;
  background: #FF006E;
  border: 4px solid black;
  cursor: pointer;
  box-shadow: 2px 2px 0px black;
}

input[type="number"] {
  font-family: 'Space Grotesk', sans-serif;
}

::placeholder {
  color: #999;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

button:active {
  transform: translate(6px, 6px) !important;
  box-shadow: none !important;
}