body {
  background-color: yellow;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 99vh;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instruction {
  color: sienna;
  font-size: 1.5rem;
}

.optionsSpace {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem;
  max-width: 40rem;
}

.cardNumberOption {
  background-color: white;
  color: sienna;
  height: 8rem;
  width: 5rem;
  border-radius: 15px;
  text-align: center;
  line-height: 8rem;
  font-size: 3rem;
  margin: 1rem;
}

.cardNumberOption:hover {
  background-color: silver;
  transform: scale(1.05);
  transition: 0.2s ease-in;
}

.playersSpace {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
}

.playerName {
  background-color: yellow;
  color: grey;
  border: 0;
  text-align: center;
}

.player {
  text-align: center;
}

.playerScore {
  text-align: center;
}

.cardsSpace {
  height: 99vh;
  margin-left: 1vw;
}

.row {
  background-color: yellow;
  display: flex;
  flex-direction: row;
  justify-content: left;
}

.cardSpace {
  background-color: yellow;
  display: flex;
  text-align: center;
  align-items: center;
}

.card {
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cardColour {
  background-color: red;
  height: 90%;
  width: 85%;
  border-radius: 15px;
}

#buttonsSpace {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

button {
  border-radius: 0;
  margin: 0.5vh 0;
  background-color: black;
  color: yellow;
  border: 0;
}

button:hover {
  color: white;
}
