body {
  font-family: sans-serif;
  background-color: silver;
  color: white;
  height: 98vh;
  width: 99vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main {
  height: 98vh;
  width: 98vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.question {
  text-align: center;
  font-size: 5vh;
  height: 10%;
}

.numbersSpace, .rollSpace {
  height: 90vh;
  width: 90vh;
  min-width: 90vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.buttonsSpace {
  height: 90vh;
  width: 20vh;
  min-width: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: right;
}

.quantity {
  border-radius: 50%;
  text-align: center;
  margin: 1vh;
  transition: transform 0.4s ease;
}

.quantity:hover {
  transform: scale(1.05);
}

.roll {
  border-radius: 10%;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.dot {
  height: 25%;
  width: 25%;
  margin: 4%;
  border-radius: 50%;
}

button {
  border: 0;
  height: 15vh;
  width: 15vh;
  background-color: white;
  border-radius: 50%;
  margin-bottom: 5vh;
  font-size: 3vh;
  transition: transform 0.4s ease;
}

button:focus {
  outline: none;
}

button:hover {
  transform: scale(1.10);
  background-color: whitesmoke;
}
