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

  -webkit-font-smoothing: antialised;
  -moz-font-smoothing: grayscale;

  font-family: "Poppins", sans-serif;
}

:root {
  font-size: 62.5%;
}

body {
  width: 100dvw;
  height: 100dvh;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #f1f1f1;
  font-size: 1.6rem;
}

.app-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.counter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.counter-actions {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.counter {
  font-size: 2.6rem;
  font-weight: 600;
  text-transform: uppercase;
}

.button {
  padding: 1.2rem;
  border-radius: 1rem;
  border: none;
  background-color: #222;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: all 0.3s;
}

.button:hover {
  background-color: #333;
}
