

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.btn {
  border-width: 10px;
  border-style: solid;
  border-color: transparent;
}

.increment, .decrement {
  width: 0;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
}

.increment {
  top: -25px;
  border-top-width: 0;
  border-bottom-color: var(--color);
  border-bottom-width: 20px;
}

.decrement {
  bottom: -25px;
  border-top-color: var(--color);
  border-bottom-width: 0;
  border-top-width: 20px;
}

.reset {
  position: absolute;
  right: -40px;
  bottom: 50%;
  transform: translateY(50%);
  border: 2px solid var(--color);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.counter {
  font-size: 2em;
  font-weight: bold;
  color: var(--color);
}
