body {
  background: -webkit-linear-gradient(left top, red, orange, yellow);
  background: -o-linear-gradient(bottom right, red, orange, yellow);
  background: -moz-linear-gradient(bottom right, red, orange, yellow);
  background: linear-gradient(to bottom right, red, orange, yellow);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  }

.title-screen, #question-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.header {
  color: #0000CD;
  font-size: 50px;
  font-family: 'Monoton', cursive;
  text-shadow: 0px 1px #DB1818;
}

.subhead {
  color: #0000CD;
  font-size: 30px;
  font-family: 'Monoton', cursive;
  text-shadow: 1px 1px #DB1818;
  text-align: center;
}

#poster {
  background-image: url("/ac73a74868a035b4830de831343858750f923ced/bttfposter.jpg");
  height: 60vh;
  width: 60vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 10px;
}

.start {
  padding: 10px;
  background-color: #DB1818;
  font-family: 'Monoton', cursive;
  font-size: 20px;
  color: #0000CD;
  margin: 25px;
}

ol {
  list-style: upper-alpha;
}

li {
  padding: 5px;
}

#question {
  color: #0000CD;
  font-size: 50px;
  font-family: 'Bangers', cursive;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
  text-shadow: 1px 1px #DB1818;
}

#answer-list {
  font-family: 'Bangers', cursive;
  font-size: 50px;
  color: #0000CD;
  cursor: pointer;
  text-shadow: 1px 1px #DB1818;
}

#answer0:hover, #answer1:hover, #answer2:hover, #answer3:hover {
  background-color: #DB1818;
}

#answer-display {
  padding: 20px;
  font-family: 'Monoton', cursive;
  font-size: 35px;
  text-align: center;
  display: block;
  color: #0000CD;
  text-shadow: 1px 1px #DB1818;
}

.correct-answer {
  padding: 20px;
  font-family: 'Monoton', cursive;
  font-size: 25px;
  text-align: center;
  display: block;
  color: #0000CD;
  text-shadow: 1px 1px #DB1818;
}

#next, #result-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DB1818;
  font-family: 'Monoton', cursive;
  color: #0000CD;
  font-size: 20px;
}

#score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Monoton', cursive;
  font-size: 40px;
  color: #0000CD;
  text-shadow: 1px 1px #DB1818;
  padding: 15px;
}

#play-again {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0000CD;
  font-size: 40px;
  font-family: 'Monoton', cursive;
  background-color: #DB1818;
}

@media screen and (max-width: 500px) {

  .header {
    text-align: center;
  }

  #poster {
    background-image: url("/ac73a74868a035b4830de831343858750f923ced/bttfposter.jpg");
    height: 60vh;
    width: 80vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 10px;
  }

  .start {
    padding: 10px;
    background-color: #DB1818;
    font-family: 'Monoton', cursive;
    font-size: 30px;
    color: #0000CD;
    margin: 25px;
  }
}