@import url("https://fonts.cdnfonts.com/css/wishcar-moundy");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: "Wishcar Moundy", sans-serif;
  font-family: "Wishcar Moundy Outline", sans-serif;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 80px;
  padding: 2px;
  justify-content: space-between;
  padding: 10px;
  background: #ff4e50; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #f9d423,
    #ff4e50
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #f9d423,
    #ff4e50
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  border-radius: 10px;
  position: absolute;
}
.Increment {
  border: none;
  background-clip: text;
  color: transparent;
  cursor: pointer;
  padding: 5px;
  /* fount-weight: bold; */
  color: #0015ff;
  font-size: 40px;
}
.Decrement {
  border: none;
  background-clip: text;
  color: transparent;
  cursor: pointer;
  padding: 5px;
  /* fount-weight: bold; */
  font-size: 40px;
  color: #0015ff;
}
.content {
  padding: 10px;
  /* fount-weight: bold; */
  font-size: 40px;
  color: #0015ff;
}
.Increment:hover {
  color: #54ff4e;
}
.Decrement:hover {
  color: rgb(255, 2, 2);
}
