*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Consolas",sans-serif;
    color: rgb(202, 202, 202);
    list-style-type: none;
}
body
{
    justify-content: center;
    align-items: center;
    background: black;
    
}
  body {
    color: #ffffff;
    background-color: #0c0b0c;
    margin: 0;
    font-family: "Consolas";
    padding-top: 90px; /* To prevent content from being hidden behind the fixed navbar */
    padding-bottom: 60px;
  }
.navbar {
  background-color: #0c0b0c;
  position: fixed;
  top: 0;
  width: 100%;
  /* This line adds space: 15px top/bottom, 20px left/right */
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  transition: opacity 0.3s ease;
  z-index: 1000;
}



.brand {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 14px;
  display: inline-block;
  margin-left: 10px;
}

.nav-links a:first-child {
  margin-left: 0;
}

.nav-links a:hover {
  background-color: #575757;
  border-radius: 4px;
}

.content {
  padding: 20px;
}
.navbar {
  /* Initial styles */
  transition: top 0.3s;
}

.navbar-scrolled {
 background-color: rgba(51, 51, 51, 0.5); /* Semi-transparent background */
  backdrop-filter: blur(3px); /* The magic! This blurs the background */
  -webkit-backdrop-filter: blur(3px); /* For Safari compatibility */
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.9s ease; /* Optional: smooth transition */
}
.brand
{
  color: #FFD700 ;
  text-decoration: none;
}


.question-container {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ffffff;
  border-radius: 5px;
}
.answer {
  display: block;
  margin: 5px 0;
  padding: 8px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  cursor: pointer;
}
.answer.correct {
      background-color: #007e04 !important;
      border-color: #00ff0d !important;
}
.answer.wrong {
      background-color: #ff061f !important;
      border-color: #ff9e9e !important;
}
.disabled {
      pointer-events: none;
      opacity: 0.6;
}
#score {
      font-size: 20px;
      font-weight: bold;
}
button {
      margin-top: 20px;
      padding: 10px 15px;
}