.number-container {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.number-button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: rgb(106, 31, 176);
  background-color: #996ccd;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.number-button:hover {
  background-color: rgb(231, 189, 231);
}
