body {
  font-family: sans-serif;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  height: 30vh;
}

.main {
  background-color: white;
  height: 100vh;
  width: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.picture {
  height: 30vh;
  min-height: 30%;
  width: 98%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.space {
  height: 5vh;
}

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

.answerLetters {
  height: 5vh;
  font-size: 4vh;
  display: flex;
  flex-direction: row;
}

.answerLetter {
  height: 5vh;
  width: 5vh;
  text-align: center;
  color: rebeccapurple;
}

.answerDashes {
  display: flex;
  flex-direction: row;
}

.answerDash {
  height: 0.6vh;
  width: 5vh;
  font-size: 1vh;
  text-align: center;
  display: flex;
  justify-content: center;
}

.dash {
  height: 100%;
  width: 80%;
  background-color: rebeccapurple;
}

.alphabet {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 28vh;
  width: 98%;
  justify-content: center;
}

.letterBox {
  height: 7vh;
  width: 7vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.letter, .clickedLetter {
  color: white;
  height: 90%;
  width: 90%;
  border-radius: 50%;
  text-align: center;
  font-size: 5vh;
  line-height: 6.3vh;
}

.letter {
  background-color: rebeccapurple;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.clickedLetter {
  background-color: grey;
}

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

.messageSpace {
  font-size: 3vh;
  color: rebeccapurple;
  text-align: center;
}

#buttonSpace {
  display: flex;
  flex-direction: column;
}

.message {
  margin: 1vh;
}

button {
  font-size: 3vh;
  border-radius: 1vh;
  background-color: rebeccapurple;
  color: white;
  transition: transform 0.2s ease;
  margin: 0.5vh;
  padding: 1vh;
}

button:hover {
  transform: scale(1.05);
  cursor: pointer;
}

button:focus {
  outline: none;
}
