@import url("https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  background-color: #222;
  color: whitesmoke;
  font-family: "Press Start 2P", sans-serif;
}
header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: 30vh;
}
header ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 10vh;
  padding: 0rem 3rem;
}
.btn {
  border: none;
  background-color: #eee;
  color: #222;
  font-size: 2rem;
  font-family: inherit;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
}
#gameName h1 {
  font-size: 2rem;
}
#correctAnswer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #222;
  padding: 15px 30px;
  background-color: #fff;
}
main {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60vh;
  width: 100%;
}
.center {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  width: 50%;
}
.left input {
  background: none;
  border: 4px solid #eee;
  font-family: inherit;
  color: inherit;
  padding: 2.5rem;
  font-size: 4rem;
  height: 10rem;
  width: 25rem;
  text-align: center;
  display: block;
  margin-bottom: 3rem;
}
.right {
  gap: 3rem;
}
.result {
  font-size: 2rem;
  text-align: center;
}
main ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
ul li {
  font-size: 1.5rem;
  list-style-type: none;
}

