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

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

main {
  width: 100%;
  height: 100%;
  background-color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .card {
  text-align: center;
  background: wheat;
  padding: 50px 60px;
  border-radius: 10px;
  font-family: "Times New Roman", Times, serif;
}
main .card #num {
  font-size: 50px;
  font-weight: 300;
}
main .card button {
  background: red;
  padding: 10px 15px;
  border: none;
  color: wheat;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 15px;
}
main .card button#inc {
  background: green;
  margin-left: 5px;
}/*# sourceMappingURL=style.css.map */