* {
  font-family: 'Nunito', sans-serif;
}

body {
  background: #001C43;
  margin: 0;
}

header {
  color: tomato;
  text-align: center;
  font-size: 5em;
  font-weight: 900;
}

section {
  background: #001C43;
  display: flex;
  justify-content: center;
}

.player-cards {
  border-radius: 20px;
  border: 5px solid #112957;
  color: #FFFFFF;
  display: none;
  font-size: 20px; 
  height: 100px;
  margin: 2%;
  padding: 5px;
  width: 200px;
}

.player-cards p {
  margin: 14px;
  text-align: center;
}

.players {
  border: transparent;
  border-radius: 5px;
  font-size: 16px;
  height: 30px;
  margin: 0 50px;
  padding-left: 5px;
}

.btn-wrap {
  align-items: center;
  background: #001C43;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.start-btn, .end-btn {
  background: tomato;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  height: 30px;
  margin: 5px;
  width: 75px;
}

.start-btn:hover, 
.end-btn:hover {
  cursor: pointer;
  color: #FFF;
}

.start-btn:hover {
  background: green;
}

.end-btn:hover {
  background: red;
}

.round-display {
  background: #fff;
  border-radius: 5px;
  color: #001C43;
  font-size: 1.4em;
  font-weight: 900;
  height: 30px;
  margin: 10px;
  text-align: center;
  width: 130px;
}

.categories {
  list-style-position: none;
  list-style: none;
  padding-left: 0;
}

.question-cards, 
.category-cards {
  background-color: #112957;
  border-radius: 20px;
  border: 2px solid transparent;
  color: #e6e7ec;
  font-size: 2em;
  margin: 25px 25px;
  padding: 25px 25px;
  text-align: center;
  width: 230px;
}

.category-cards {
  background-color: #001C43;
  font-size: 1.5em;
}

.question-cards:hover {
  border: 2px solid #ff7072;
  color: #ff7072;
  cursor: pointer;
}

.question-no-hover {
  background-color: #112957;
  border-radius: 20px;
  border: 2px solid transparent;
  color: #e6e7ec;
  font-size: 2em;
  margin: 25px 25px;
  padding: 25px 25px;
  text-align: center;
  width: 230px;
}

.question-window {
  align-items: center;
  background-color: tomato;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 500px;
  justify-content: center;
  left: 5%;
  position: absolute;
  top: 45%;
  width: 90%;
  z-index: -1;
}

.question-clue {
  color: #112957;
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  margin-top: 0;
  padding: 0 5%;
  text-align: center;
}

.question-div {
  display: flex;
}

.question-answer-input {
  border: none;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  font-size: 20px;
  height: 48px;
  width: 400px;
}

.answer-btn {
  background-color: #112957;
  border: none;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  color: #FFFFFF;
  height: 50px;
  font-size: 1.4rem;
  padding-top: 2px;
  width: 200px;
}

.answer-btn:hover {
  color: tomato;
  cursor: pointer;
}