*, *:before, *:after {
  box-sizing: border-box;
}

body {
  margin: 0px;
}

#score {
  float: right;
}

.btn {
  width: 15rem;
  margin-top: 50px;
  font-size: 24px;
  text-align: center;
  padding: 15px 25px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

.plus:hover {
  background-color: #3e8e41;
}

.plus {
  background-color: green;
}

.missed {
  background-color: red;
}

.missed:hover {
  background-color: rgb(238, 70, 70);
}

.header {
  height: 10vh;
  width: 100%;
  background-color: black;
  color: azure;
  font-size: 4vh;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 2px;
}

.board {
  position: absolute;
  top: 10vh;
  bottom: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.board .row {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.board .row .tile {
  top: 0;
  bottom: 0;
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5vh;
  font-family: impact;
  color: #ddd;
  background: linear-gradient(to top left, #000088, #0000ff);
  border: 3px solid #000;
}
.board .row .category {
  text-align: center;
  font-size: 1.69vh;
  line-height: 1.35;
  display: block;
}
.board .row .comments {
  display: none;
  font-size: 3vh;
}
.board .row .question-value {
  display: block;
  font-size: 3vh;
}
.board .row .question-clue {
  display: none;
  padding: 60px;
}
.board .row .question-answer {
  display: none;
}
.board .row .tile.active {
  border-width: 0;
  font-size: 3vh;
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 5;
}
.board .row .tile.active .category {
  display: none;
}
.board .row .tile.active .comments {
  display: block;
}
.board .row .tile.active .question-value {
  display: none;
}
.board .row .tile.active .question-clue {
  display: block;
}
.board .row .tile.active .question-answer {
  display: none;
}
.board .row .tile.active.answer {
  border-width: 0;
  font-size: 3vh;
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 5;
}
.board .row .tile.active.answer .question-value {
  display: none;
}
.board .row .tile.active.answer .question-clue {
  display: none;
}
.board .row .tile.active.answer .question-answer {
  display: block;
  text-align: center;
}

/*# sourceMappingURL=index.css.map */
