body {
    font-family: Arial, sans-serif;
    height: 100vh;
  background: url(../images/test\ BG.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
    padding: 20px;
    max-width: 800px;
    margin: auto;
  }
  h1 {
    text-align: center;
    color: #ffffff;
  }
  
  .logo img {
    height: 2.5rem;
    width: 3rem;
  }
      /* NAVBAR STYLES */
      nav {
    color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0,37);
  }

  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
  }

  .logo {
    font-size: 1.5em;
    font-weight: bold;
  }

  .nav-links {
    display: flex;
    gap: 20px;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: #ddd;
  }

  /* HAMBURGER MENU */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
  }


  /* Popup overlay */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  /* Popup image container */
  .popup {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    cursor: pointer;
  }

  .popup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }
  .question-box {
    background: white;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0,37);
  }
  .question {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    
  }
  .question img {
    max-width: 100%;
    max-height: 200px;
    display: block;
    margin: 10px 0;
    border-radius: 8px;
  }
  input[type="text"] {
    padding: 8px;
    width: 70%;
    font-size: 16px;
  }
  button {
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
  }
  .correct {
    background-color: #d4edda !important;
  }
  .incorrect {
    background-color: #f8d7da !important;
  }
  .score-box {
    background-color: #fff3cd;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 18px;
    text-align: center;
  }
  .clue {
    margin-top: 10px;
    font-style: italic;
    color: #ffffff;
  }
  .image{
  width: 100%;
  display: block;
}

/* footer */
footer{
  background: var(--exDark);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}
.social-links{
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.social-links a{
  border: 2px solid #fff;
  color: #fff;
  display: block;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  margin: 0 0.3rem;
  transition: all 0.5s ease;
}

.social-links a:hover{
  background: #fff;
  color: var(--exDark);
}
.footer span{
  margin-top: 1rem;
  display: block;
  font-family: var(--Playfair);
  letter-spacing: 2px;
}

  /* MOBILE NAV STYLES */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #333;
      position: absolute;
      top: 60px;
      right: 20px;
      width: 200px;
      border: 1px solid #444;
      border-radius: 4px;
      padding: 10px 0;
    }

    .nav-links.show {
      display: flex;
    }

    .hamburger {
      display: flex;
    }

  }



