*{
    box-sizing: border-box;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(170deg,rgb(245, 245, 245),rgb(129, 129, 129));

}


nav{
    margin-bottom: 40px;
    /* border-bottom-left-radius: 50px; */
    z-index: 1000;
}
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;

  }
  
  .menu h1 {
    color: white;
    margin: 0;
  }
  
  .nav-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }
  
  .nav-list ul li {
    margin: 0 10px;
  }
  .nav-list ul li:hover{
   
    width: 100%;
    border-bottom: 1px solid white;
  }
  
  .nav-list ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
  }
  
  .nav-list ul li a:hover {
    color: #ddd;
  }
  
  .menu-icon {
    display: none;
    cursor: pointer;
  }
  
  .menu-icon i {
    font-size: 24px;
    color: white;
  }
  
  /* Media Query for Mobile */
  @media screen and (max-width: 768px) {
    nav{
      z-index: 1000;
      
    }
    .nav-list {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: #333;
      text-align: center;
      z-index: 1000;
    }
  
    .nav-list ul {
      flex-direction: column;
    }
  
    .nav-list ul li {
      margin: 10px 0;
    }
  
    .menu-icon {
      display: block;
    }
  }
  
  /* Show the nav-list when active */
  .nav-list.active {
    display: flex;
  }
  
  /* Styling for larger screens */
  @media screen and (min-width: 769px) {
    .menu-button {
      display: none;
    }
  
    nav{
      z-index: 1000;
      
    }
    .nav-list {
      display: flex;
    }
  }


/* 
main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
    background-color: #e9ecef;
} */

body::-webkit-scrollbar{
    width: 5px;
    background-color: #000000;
  }
  
body::-webkit-scrollbar-thumb{
  background-color: #393939e1;
  border-radius: 9px;
}
.quiz-section{
    position: relative;
width: 100%;

justify-content: center;
text-align: center;
padding: 10px 20px 20px 20px;
background: radial-gradient( circle at center, rgb(200, 200, 200), white);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.398);
border-radius: 9px;
line-height: 1.7rem;
}
.position{
    justify-content: center;
    align-items: center;
}
#quiz-container {
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 2em;
    width: 80%;
    max-width: 600px;
}

.btn-container {
    display: flex;
    flex-direction: column;
}

.btn {
    background: #1b497b;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    color: #f4f4f4;
    transition: color 0.7s ease, background-color 0.9s ease, transform 0.5s ease-in;
    background: linear-gradient(90deg,rgb(255, 255, 255), rgb(71, 112, 248), rgb(255, 255, 255));
}

body::-webkit-scrollbar{
    width: 5px;
    background-color: #000000;
  }
  
body::-webkit-scrollbar-thumb{
  background-color: #393939e1;
  border-radius: 9px;
}