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

:root {
  --primary-txt-color: #000;
  --secondary-txt-color: #fff;
  --ingredient-color: #d61900;
}

body {
  background: url("dough_pic.jpg") center center fixed no-repeat;
  background-size: cover;
  background-position: center center;
  font-family: "Balsamiq Sans", cursive;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 6vw, 3rem);
}

.container {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  width: min(600px, 90%);
  /* width: 80%;
  max-width: 600px; */
  height: min(600px, 90%);
}

.ballsInput {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 13vw, 5rem);
  color: var(--primary-txt-color);
}

.minus-icon {
  color: var(--primary-txt-color);
  margin: auto 0;
  margin-right: 1rem;
  font-size: inherit;
  cursor: pointer;
  transition: all 0.05s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.plus-icon {
  color: var(--primary-txt-color);
  margin: auto 0;
  margin-left: 1rem;
  font-size: inherit;
  cursor: pointer;
  transition: all 0.05s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ballsOutput {
  text-align: center;
}

.outputText1 {
  margin: 1rem 0 1rem 0;
  font-size: clamp(1.4rem, 6vw, 3rem);
  color: var(--secondary-txt-color);
}

.outputText {
  color: black;
  margin-bottom: 1rem;
}
.ballsNumberText {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

.ingredient {
  color: var(--ingredient-color);
}

.qMark {
  color: var(--ingredient-color);
}

.pressed {
  transform: scale(1.3);
  color: #999;
}
