* {
  box-sizing: border-box;
}
body {
  display: flex;
  align-items: center;
  background: #8e67f0;
  height: 100vh;
  margin: 0;
  min-width: 350px;
}
.container {
  display: flex;
  justify-content: center;
  position: relative;
  width: 80%;
  height: 60%;
  background: #fff;
  margin: 0 auto;
  border-radius: 40px;
  padding: 40px 40px 80px;
}
.bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: absolute;
  height: fit-content;
  width: 80%;
  background: #000;
  border-radius: 20px;
  bottom: -15%;
  padding: 20px 40px;
  gap: 20px;
}
.counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  height: 60%;
  font-size: 24px;
}
.number {
  color: white;
}
.text {
  color: #747285;
}

.inputs {
  border: none;
  outline: none;
  padding: 40px 20px 120px 20px;
  font-size: 24px;
  background: none;
  text-indent: 25px;
  width: 90%;
}

@media (max-width: 568px) {
  .counter {
    font-size: 16px;
    padding: 20px;
  }
  .bar {
    height: fit-content;
    justify-content: center;
  }
}
