@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
}
html {
  height: 100%;
}
* {
  font-family: Roboto;
  color: #000;
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
*:focus {
    outline: none;
}
body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background: #fff;
}
header {
  width: 90%;
  margin: 5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.content {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin-top: -10%;
  text-align: center;
  align-items: center;
}
.content div {
  margin: 2%;
}
.question {
  font-weight: bold;
}
.answerInput:active {
  color: #ff6666;
}

.startContent {
  position: absolute;
  top: 40%;
  align-items: center;
  text-align: center;
}
.item {
  margin: 20px;
}
.startButton {
  width: 20vw;
  padding: 5px 8px;
  box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 15px;
}

.resultsContent {
  margin: 5%;
  align-items: center;
  text-align: center;
}
.resultsContent .item {
  margin: 40px;
}
.resultsContent .item p {
  margin: 10px;
}
.resultsContent span {
  font-weight: bold;
}
.false p {
  color: #ff6666;
}
.numCorrect, .time {
  width: 20vw;
  padding: 5px 8px;
  box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 15px;
}

@media (max-width: 900px) {
  .startButton {
    width: 50vw;
  }
  input[type=text], button {
    width: 50vw;
  }
}
