body {
  font-family: sans-serif;
  background-color: #FAFAFA;
  color: black;
  
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 20px;
  position: relative;
  
}

.nav-bar {
  display: flex;
  justify-content: space-around;
  gap: 70px;
  margin-top: 20px;
  padding: 0;
  width:100%;  
}
.nav-bar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 5px 10px;
  font-size: 22px;
  font-family: Poppins;
}

.nav-bar a:hover {
  color: #0077cc;
}

header::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: rgb(85, 48, 60);
  margin-top: 20px;
}

h1{
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
     margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

p{
    font-family: "Cormorant", serif;
  font-size: 18px;
  max-width: 800px;
  margin: 20px auto; 
  padding: 0 20px;
  line-height: 1.6;
  text-align: left;
}

li{
  font-family:"Cormorant", serif; 
  text-align: center;
  font-size: 18px;
  
}

ul {
  max-width: 800px;
  margin: 10px auto 30px auto; 
  padding-left: 20px; 
  font-family: "Cormorant", serif;
  font-size: 18px;
  line-height: 1.6;
}

.quiz-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
}