body,
html {
  background-color: #fefefe;
  margin: 0;
  padding: 0;
  height: 100%;
}

@media screen and (max-width: 768px) {
  nav {
    font-size: 14px;
  }
}

nav {
  z-index: 999;
  position: fixed;
  top: 0;
  height: 4%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0deg, #ccc, transparent);
  border-image-slice: 1;
  background-color: white;
}

nav p {
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  color: #6f6f6f;
}

.quiz-container,
.quiz-header {
  margin-top: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2%;
}

.quiz-header h1 {
  font-family: Book Antiqua, Palatino, Palatino Linotype, Palatino LT STD,
    Georgia, serif;
  font-size: 52px;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 26.4px;
}

.quiz-header p {
  color: grey;
  font-size: 14px;
  margin-top: -20px;
}

.quiz-element {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

.quiz-element-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;
}

.question-number h1 {
  font-family: Bodoni MT, Didot, Didot LT STD, Hoefler Text, Garamond,
    Times New Roman, serif;
  font-size: 18px;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 26.4px;
  color: rgb(185, 185, 185);
  white-space: nowrap;
}

.question-text p {
  margin-left: 15px;
  font-family: Franklin Gothic Medium, Franklin Gothic, ITC Franklin Gothic,
    Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 15.4px;
  white-space: normal;
  word-wrap: break-word;
}

.quiz-element-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;
}

.question-number {
  font-family: Bodoni MT, Didot, Didot LT STD, Hoefler Text, Garamond,
    Times New Roman, serif;
  font-size: 12px;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 26.4px;
  color: rgb(185, 185, 185);
}

.question-text {
  margin-left: 15px;
  font-family: Franklin Gothic Medium, Franklin Gothic, ITC Franklin Gothic,
    Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 15.4px;
  white-space: normal;
  word-wrap: break-word;
}

.quiz-element-answer-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.quiz-element-answer-container button {
  width: 350px;
  margin-top: 4px;
  box-shadow: inset 0px 1px 0px 0px #bee2f9;
  background-color: #63b8ee;
  border-radius: 6px;
  border: 1px solid transparent;
  display: inline-block;
  cursor: pointer;
  color: white;
  font-family: "Franklin Gothic", sans-serif;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #7cacde;
}

.quiz-element-answer-container button:hover {
  background-color: #468ccf;
  transition: all 0.4s ease;
}

.quiz-element-answer-container button:disabled {
  background-color: #ccc;
}
.quiz-element-separator {
  width: 130%;
  height: 2px;
  margin-top: 25px;
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: #ccc;
}

.final-score-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.final-score-div p {
  font-family: Book Antiqua, Palatino, Palatino Linotype, Palatino LT STD,
    Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 26.4px;
}
