@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  height: 100vh;
  background-color: #f2f2f2;
  color: #262626;
}

#counter {
  font-size: 6rem;
}

#button__wrapper {
  display: flex;
  gap: 1rem;
}

#button__wrapper > * {
  border: none;
  background-color: white;
  box-shadow: 0px 0px 10px #dadada;
  font-weight: bold;
  font-size: 2rem;
  color: inherit;
  border-radius: 50%;
  height: 4rem;
  width: 4rem;
  cursor: pointer;
  outline: none;
  transition: background-color 250ms ease-in-out, transform 50ms ease-in-out;
}

#button__wrapper *:hover {
  background-color: #9d9c9c;
}

#button__wrapper *:active {
  transform: scale(0.9);
}
