body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-image: url(background-img.jpg);
  background-size: cover;
  font-family: "Concert One";
  font-weight: 400;
  font-style: normal;
  text-align: center;
  height: 100vh;
}

.container {
  background-color: white;
  border-radius: 50px;
  width: 400px;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 3px 3px 15px gray;
}

h1 {
  margin-top: 10px;
  margin-bottom: 10px;
}

h2 {
  font-size: 50px;
  margin-top: 0px;
  margin-bottom: 20px;
}

button {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 200px;
  color: white;
  font-size: 22px;
  font-weight: bold;
  border-radius: 15px;
  border: none;
  margin-bottom: 10px;
  font-family: "Concert One", sans-serif;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
}

#increment-btn {
  background-color: rgb(195, 10, 10);
  transition: background-color 0.15s;
}

#increment-btn:hover {
  background-color: rgb(224, 13, 13);
}

#decrement-btn {
  background-color: rgb(224, 162, 8);
  transition: background-color 0.15s;
}

#decrement-btn:hover {
  background-color: rgb(250, 182, 10);
}

#save-btn {
  background-color: rgb(20, 145, 20);
  transition: background-color 0.15s;
}

#save-btn:hover {
  background-color: rgb(19, 180, 19);
}

#save-el {
  font-size: 22px;
}