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


html, body {
  margin: 0;
  padding: 0;
  height: 80%;
  font-family: 'Space Grotesk', sans-serif;
  background-color: gray;
}

header {
  position: fixed;
  height: 50px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  display: flex;

}

header * {
  margin: 25px;
}

p {
  font-size: 24px;
}


.quiz-title {
  margin-bottom:10px;
  font-size: 40px;
  font-weight:bold;
  }

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}

/* this section is for the questions */
section {
  width: 800px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* quiz section */
#quiz {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#question-text {
  font-size: 30px;
}

#question-answers  {
  list-style-type: none;
  padding:0;
  margin: 20px;
  font-size: 30px;
}

#question-answers li {
  margin: 10px 0;
  border: 3px solid black;
  padding: 10px;
  border-radius: 10px;
}

#question-answers li:hover {
  cursor: pointer;
}

button {
  color: white;
  background: teal;
  font-size: 24px;
  border-radius: 10px;
  padding: 5px;
  cursor: pointer;
}



/* Quiz end section styles */
#end {
  display: none;
  text-align: center;
}

#end h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

#end p {
  font-size: 16px;
  margin-bottom: 20px;
}

#initialsForm label {
  font-size: 16px;
  font-weight: 500;
}

#initialsForm input[type="text"] {
  padding: 5px;
  font-size: 16px;
  margin-bottom: 10px;
}

#initialsForm button {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}

#initialsForm button:hover {
  background-color: #555;
}