@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@300;400;500&family=Raleway&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: rgb(232, 245, 212);
}
main {
  margin: 0 auto;
  justify-content: center;
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

main > h1 {
  font-size: 3em;
}
sub {
  font-weight: 100;
  font-size: 14px;
}
#decrease,
#increase,
#reset {
  align-items: center;
  background-color: #0a66c2;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: -apple-system, system-ui, system-ui, 'Segoe UI', Roboto,
    'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell,
    'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Lucida Grande', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

#decrease:hover,
#increase:hover,
#reset:hover,
#decrease:focus,
#increase:focus,
#reset:focus {
  background-color: #16437e;
  color: #ffffff;
}

#decrease:active,
#increase:active,
#reset:active {
  background: #09223b;
  color: rgb(255, 255, 255, 0.7);
}

#decrease:disabled,
#increase:disabled,
#reset:disabled {
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.3);
}
