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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.counter {
  border: 2px solid #fff;
  padding: 40px 25px;
  width: 100%;
}
.counter h1 {
  font-size: 3.5rem;
  color: skyblue;
  text-align: center;
  width: 100%;
  padding-bottom: 20px;
}
.counter #num {
  font-size: 56px;
  color: royalblue;
  text-align: center;
  padding-bottom: 20px;
}
.counter .buttons {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  gap: 20px;
}
.counter .buttons #inc {
  all: unset;
  padding: 20px;
  border-radius: 10px;
  background-color: green;
  font-size: 24px;
  text-align: center;
}
.counter .buttons #dec {
  all: unset;
  padding: 20px;
  background-color: crimson;
  font-size: 24px;
  border-radius: 10px;
  text-align: center;
}
.counter .buttons #res {
  all: unset;
  padding: 20px;
  background-color: palevioletred;
  font-size: 24px;
  border-radius: 10px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */