/* SITEWIDE STYLING */
body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 18px;
}

h1 {
  font-size: 2em;
  font-weight: bolder;
  margin: 1em auto 1em auto;
}

h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 1em auto 1em auto;
}

p {
  margin: 1em auto 1em auto;
}

.wrapper {
  max-width: 650px;
  margin: 4em auto 0 auto;
  padding: 0 0.5em 0 0.5em;
}
button {
  font-size: 18px;
  padding: 3px 10px;
  color: white;
  background-color: #767ab9;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #302c6f;
  transition: all 0.5s;
}

.hide {
  display: none;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1em 0 1em;
  background-color: #767ab9;
  color: white;
}

header a {
  color: white;
  text-decoration: none;
}


/* START SCREEN STYLING*/
.start-screen {
  text-align: center;
}

.about {
  margin-bottom: 2em;
}

/* QUESTION SCREEN STYLING */
.choices {
  margin-left: 1em;
}

.choices button{
  display: block;
  margin: 5px 0 5px 0;
}

.question-header {
  display: flex;
  align-items: center;
}

/* END SCREEN STYLING */
input[type = "text"] {
  padding: 4px 6px;
  font-size: 16px;
}

/* ANSWER FEEDBACK STYLING */
#answer-sheet {
  background-color: #d8daef;
  width: 25%;
  border-radius: 5px;
  padding: 5px;
  margin: 2em auto auto 0.5em;
}

#answer-sheet p {
  font-size: 80%;
  margin: 0;
  padding: 2px;
}

/* HIGHSCORES PAGE STYLING */
ol {
  list-style-position: inside;
  margin-bottom: 2em;
}

ol li {
  padding: 4px;
}

ol li:nth-child(odd) {
  background-color: #d8daef;
}

#highscores a {
  padding: 3px 10px;
  color: white;
  text-decoration: none;
  background-color: #767ab9;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#highscores a:hover {
  background-color: #302c6f;
  transition: all 0.5s;
}

/*  MINIMUM RESPONSIVE CSS  */
@media screen and (max-width: 484px) {
  #answer-sheet {
    width: 40%;
  }
}
  