* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
    body{
      font-family: "Roboto Slab", serif;
      font-optical-sizing: auto;
      font-style: normal;
      background-color: black;
      font-weight: 600;
      
    }
  
  
    .navbar{
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-right: 8rem;
      padding-left: 7rem;
    }
  
    .navbar .left img{
      width: 100px;
      height: 100px;
    }
  
    .navbar .left{
      padding-top: 3rem;
    }
  
    .navbar .right{
      padding-top: 1.8rem;
      display: flex;
      align-items: center;
      gap: 6rem;
    }
  
    .navbar .right a{
      color: white;
      text-decoration: none;
      font-size: 1.3rem;
    }
  
    .navbar .right a:hover{
      color: #FFCC6D;
      text-decoration: none;
      font-size: 1.3rem;
    }
  
    .menu-button {
      position: fixed;
      z-index: 10;
      top: 2rem; 
      right: 1.25rem; 
      background-color: transparent;
      color: white;
      font-size: 1.5rem;
      padding: 0.3rem 0.3rem; 
      border: none;
      cursor: pointer;
      border-radius: 0.3125rem; 
      display: none; 
    }
    
    .menu-button:hover {
      color: #FFCC6D;
    }
    
    .sidebar {
      z-index: 10;
      flex-direction: column;
      gap:1rem;
      position: fixed;
      top: 0;
      right: -15.625rem; 
      width: 15.625rem; 
      height: 100%;
      background-color: black;
      color: white;
      padding: 1rem;
      transition: right 0.3s ease;
      overflow-y: auto;
      display: none;
    }
    
    .sidebar a {
      font-size: 1rem;
      text-decoration: none;
      color: white;
      margin: 0.5rem 0; 
      padding-top: 1rem;
      padding-left: 1rem; 
    }
    
    .sidebar a:hover {
      color: #FFCC6D;
    }
    
    
    .sidebar.open {
      display: flex;
      right: 0; 
    }
  
    .bottom{
      margin-top: 6rem;
    
    }
    
    .icons{
      margin-top: 5rem;
      justify-content: center;
      text-align: center;
      display: flex;
      margin-left: auto;
      margin-right: auto;
      gap:15rem;
      padding-bottom: 4rem;
    }
    
    
    .icons img{
      width: 2.3rem;
      height: 2.3rem;
      opacity: 0.7;
      transition-duration: 200ms;
    }
    
    .icons img:hover{
      width: 2.33rem;
      height: 2.33rem;
      opacity: 1;
    }
    
    .copyright{
      color: white;
      width: 100%;
      display: flex;
      padding-top: 0.2rem;
      padding-bottom: 1rem;
      font-size: 1rem;
      font-weight: 400;
      padding-left: 2rem;
    }

    .middle{
        margin: 3rem 0rem;
        color: white;
        background-image: url("assets/image(13).png");
        padding: 8rem;
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }

    .intro {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .intro .title{
        font-size: 5rem;
        color: #FFCC6D;
        font-weight: 600;
    }

    .intro .explanation{
        font-size: 1.5rem;
        color: #808080;
        font-weight: 400;
    }

    .questions{
        display: flex;
        flex-direction: column;
        gap: 2rem;
        font-size: 1.3rem;
    }

    strong{
        color: #FFCC6D;
        font-weight: 400;
    }


    .question{
        display: flex;
        gap: 1rem;
        color: white;
        cursor: pointer;
      }


    .button img{
        width: 1.5rem;
        height: 1.5rem;
    }

    .button{
        cursor: pointer;
    }

    .answer {
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.5s ease;
        opacity: 0;
        padding: 0 1rem;
        font-weight: 400;
    }
    
    .answer.open {
        visibility: visible;
        max-height: 500px; 
        opacity: 0.75;
    }

    .total{
        display: flex;
        flex-direction: column;
        gap:1rem;
    }

    .ending{
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        font-size: 1.5rem;
        color: #808080;
        font-weight: 400;
    }

    

    
    

@media (max-width: 1200px) {
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); 
        backdrop-filter: blur(5px); 
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9; 
    }
    
    .overlay.visible {
        opacity: 1;
        visibility: visible;
    }
    
    .navbar {
        padding-left: 1.5rem;
        margin-bottom: 0rem;
        }
    
    .navbar .left{
        padding-top: 1rem;
        }
    
    .navbar .left img {
        width: 80px;
        height: 80px;
    }
    
    .navbar a{
        display: none;
    }

    .icons {
        flex-direction: row; 
        gap: 1rem;
        padding-top: 0rem;
        padding-bottom: 1rem;
        }
    
    .menu-button {
        display: block; 
    }
        
    .sidebar {
        display:flex;
        width: 12.5rem; 
    }
    
    .sidebar.open {
        right: 0; 
    }
    
    .copyright {
        font-size: 0.9rem;
        text-align: center;
        padding: 0.5rem 1rem;
    }

    .intro .title {
      font-size: 3rem; 
  }

  .intro .explanation {
      font-size: 1.5rem;
      text-align: center; 
  }

  .questions {
      gap: 1.5rem;
      
  }

  .middle {
    padding: 5rem 3rem;
  }

  .icons img {
    width: 2rem;
    height: 2rem;
  }

  .icons {
    flex-direction: row; 
    gap: 1rem;
    padding-top: 0rem;
    padding-bottom: 1rem;
  }
    }

  @media (max-width: 768px) {

    .middle{
      margin-top: 0.8rem;
    }
    .intro .title {
      font-size: 2.5rem;
      
  }

  .intro .explanation {
      font-size: 1rem;
     text-align: left;
  }

  .questions {
      gap: 1rem;
      font-size: 1rem;
  }

  .question {
     font-size: 1rem;
     width: 100%;
     justify-content: space-between;
  }

  .middle{
    padding: 2rem;
    gap: 2rem;
   }

  .answer{
    font-size: 0.9rem;
  }

  .ending{
    font-size: 1rem;
    text-align: left;
    gap: 1rem;
    align-items: normal;
  }

  .total{
    gap: 0.5rem;
  }
}