@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

body {
  min-height: 100vh;
  margin: 0;
  background: orange;
  font-family: "Open Sans", sans-serif;
}

.bingo-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.selected-balls-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  justify-items: center;
  align-items: center;
  gap: 2%;
  flex-wrap: wrap;
  width: 100%;
  max-width: 750px;
  margin-top: 20px;
}

.selected-ball {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.selected-ball.selected {
  background: radial-gradient(
    circle at 65% 15%,
    white 1px,
    aqua 3%,
    darkblue 60%,
    aqua 100%
  );
  color: white;
}

.button-wrap {
  display: flex;
}

.button-wrap button:nth-child(2) {
  margin-left: 10px;
}

button {
  background: purple;
  border: none;
  display: inline-flex;
  padding: 0.25em 0.5em;
  border-radius: 6px;
  color: white;
  font-size: 1.6rem;
}

/* last ball value */

.last-balls-value {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 6rem;
  margin-top: 20px;
  width: 100%;
  max-width: 750px;
}

.last-balls-value div {
  margin-right: 1em;
  background-color: white;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 2rem;
  width: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.last-balls-value div:first-child {
  font-size: 4rem;
  width: 130px;
}
