body {
  background-color: deepskyblue;
  font-family: sans-serif;
}

.main {
  background-color: deepskyblue;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wordList {
  font-size: 120%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 2%;
}

.wordsearchGrid {
  background-color: yellow;
  height: 98vh;
  margin-top: 0;
  width: 98vh;
  margin-left: 0;
}

.row {
  line-height: 100%;
  width: 98vh;
  display: flex;
  flex-direction: row;
  flex: 1;
}

.space {
  text-align: center;
  flex: 1;
  border-radius: 50%;
}

.found {
  background-color: red;
}

.grey {
  color: grey;
}

.wordsearchOption {
  background-color: white;
  color: red;
  padding: 10px;
  margin: 10px;
  font-size: 100%;
  width: 150px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s ease;
}

.wordsearchOption:hover {
  background-color: wheat;
  transform: scale(1.05);
  cursor: pointer;
}

.selection {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.wordsearchSpace {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
}

.letter {
  height: 50%;
  width: 50%;
  font-size: 50%;
  margin: 25%;
  line-height: 100%;
}

.selectionPlace {
  display: flex;
  flex-direction: column;
  text-align: center;

}

.playAgain {
  background-color: yellow;
  margin: 0 0 10px 0;
  padding: 10px;
  text-align: center;
  font-size: 120%;
  border: 0;
  transition: transform 0.4s ease;
}

.playAgain:hover {
  background-color: gold;
  transform: scale(1.05);
  cursor: pointer;
}

.playAgain:focus {
  outline: none;
}
