@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Josefin Sans", Courier, monospace;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: peachpuff;
}

.container {
  padding: 50px;
  border-radius: 30px;
  background: white;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.container header {
  font-size: 25px;
  font-weight: 700;
  color: palevioletred;
  margin-bottom: 15px;
}

img {
  width: 70px;
  margin-bottom: 8px;
}

.container .input-number {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.input-number input {
  height: 30px;
  padding: 0, 10px;
  width: calc(100% / 3);
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  color: #333;
  border: 2px solid violet;
}

.input-number button {
  height: 30px;
  padding: 0, 10px;
  width: calc(100% / 3);
  border-radius: 10px;
  background: palevioletred;
  color: aliceblue;
  border: 1px solid violet;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.input-number button:active {
  transform: scale(0.9);
}

input[type="number"]:focus {
  outline: none;
  border-color: palevioletred;
  box-shadow: 0 0 5px rgba(219, 112, 147, 0.5);
}

.input-number .container p {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 5px;
  color: black;
}

.clue {
  margin-top: 10px;
  font-weight: bold;
  color: blueviolet;
}

.text {
  margin-top: 5px;
  margin-bottom: 5px;
}

.used-numbers {
  font-weight: bold;
  color: blueviolet;
}
