* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
}
.quiz-app {
  width: 800px;
  margin: 20px auto;
  background-color: #f8f8f8;
  padding: 15px;
}
.quiz-app .quiz-info {
  display: flex;
  background-color: #fff;
  padding: 20px;
}
.quiz-app .quiz-info .category {
  flex: 1;
}
.quiz-app .quiz-info .count {
  flex: 1;
  text-align: right;
}
.quiz-app .quiz-area {
  margin-top: 15px;
  padding: 20px;
  background-color: #fff;
}
.quiz-app .answer-area {
  background-color: #fff;
  padding: 0 20px 20px;
}
.quiz-app .answer-area .answer {
  background-color: #f9f9f8;
  padding: 15px;
} 
.quiz-app .answer-area .answer:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}
.quiz-app .answer-area .answer input[type="radio"]:checked + label {
  color: #0075ff;
}
.quiz-app .answer-area .answer label {
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #777;
  margin-left: 5px;
  position: relative;
  top: -1px;
}
.quiz-app .submit-button {
  display: block;
  background-color: #0075ff;
  width: 95%;
  margin: 20px auto;
  padding: 10px 15px;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
}
.quiz-app .submit-button:focus {
  outline: none;
}
.quiz-app .bullets {
  border-top: 1px solid #dedede;
  background-color: white;
  display: flex;
  padding: 20px;
}
.quiz-app .bullets .spans {
  flex: 1;
  display: flex;
}
.quiz-app .bullets .spans span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #eee;
  margin-right: 5px;
}
.quiz-app .bullets .spans span.on {
  background-color: #0075ff;
}
.quiz-app .results {
  padding: 20px;
  text-align: center;
  font-size: 30px;
}
.quiz-app .results span {
  font-weight: bold;
}
.quiz-app .results span.bad {
  color: #dc0a0a;
}
.quiz-app .results span.good {
  color: #009688;
}
.quiz-app .results span.perfect {
  color: #0075ff;
}
