* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: slategray;
}

#title {
  text-align: center;
  margin-top: 5dvh;
  color: white;
  text-shadow: black 2px 2px;
}

#startButtonDiv {
  width: fit-content;
  margin: auto;
}

#startButton {
  font-size: 20px;
  border-radius: 10px;
  padding: 5px 20px;
  border-style: none;
  cursor: pointer;
  background-color: rgb(21, 202, 21);
  box-shadow: black 1px 1px;
  margin-top: 3dvh;
}

#quizDiv {
  width: 85%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 5dvh;
  align-items: center;
}

#quizDiv > #questionTitle {
  box-shadow: 1px 1px black;
  color: white;
  text-align: center;
  font-size: 22px;
  background-color: slateblue;
  width: fit-content;
  padding: 5px 20px;
  border-radius: 10px;
  font-weight: 500;
}

#quizDiv > form > #answersDiv {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2dvh;
}

#quizDiv > form > #answersDiv > #answerDiv {
  display: flex;
  gap: 10px;
  background-color: darkgray;
  padding: 5px 20px;
  border-radius: 10px;
  box-shadow: 1px 1px black;
}

#quizDiv > form > #answersDiv > #answerDiv > label {
  color: black;
  font-size: 20px;
}

#quizDiv > form > #answersDiv > #answerDiv > input {
  width: 20px;
}

#quizDiv > form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#quizDiv > form > input {
  width: 300px;
  max-width: 60%;
  font-size: 20px;
  border-radius: 10px;
  padding: 5px 20px;
  border-style: none;
  cursor: pointer;
  background-color: rgb(21, 202, 21);
  box-shadow: black 1px 1px;
  margin-top: 5dvh;
  margin-bottom: 2dvh;
}

#quizDiv > form > input:disabled {
  color: black;
}

.questionResult {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 5dvh;
  border-radius: 10px;
  padding: 8px 20px;
  box-shadow: 1.5px 1.5px black, -1.5px -1.5px black;
}

#correct {
  background-color: rgb(13, 235, 13);
}

#wrong {
  background-color: red;
}

#questionImage {
  max-width: 50%;
  width: 200px;
  box-shadow: 1px 1px black;
  border-radius: 20px;
}

#result,
#highScore {
  color: #fff;
  font-size: 23px;
  font-weight: bold;
  margin-top: 5dvh;
  text-align: center;
  margin-left: 5%;
  margin-right: 5%;
  text-shadow: black 1.5px 1.5px;
}
