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

:root {
  --color-primary: linear-gradient(
    180deg,
    rgba(255, 220, 175, 1) 0%,
    rgba(255, 174, 117, 1) 100%
  );

  --color-background: #fdf8da;
}

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);
}

.minus-icon {
  margin: auto 0;
  margin-right: 1rem;
  font-size: inherit;
  cursor: pointer;
}

.plus-icon {
  margin: auto 0;
  margin-left: 1rem;
  font-size: inherit;
  cursor: pointer;
}

.ballsOutput {
  text-align: center;
}

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

.outputText {
  margin-bottom: 1rem;
}
.ballsNumberText {
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-decoration: underline dotted;
}
