* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

    /*box style*/


    .box {
      border: 1px solid #ccc;
      padding: 20px;
      margin: 10px auto;
      max-width: 800px;
      background-color: #f9f9f9;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 8px;
  }
  
  .header {
      font-size: 34px;
      color: #333;
  }

  .header2{
    font-size: 24px;
      color: #333;
      margin-bottom: 5px;
  }
  
  .para {
      font-size: 16px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 10px;
  }
  
   a{
    display: flex;
    justify-content: center;
    text-decoration: none;
    padding-top: 10px;
   }
   
   button{
     padding: 8px 10px;
     font-size: 16px;
     background-color: white;
     border-radius: 8px;
   }


   /*---- MOBILE RESPONSIVE ----*/

  /*Media query for navigation section*/
  @media only screen and (max-width: 868px) {
    .nav-links {
      display: none;
    }
  
    .dropdown-icon {
      display: block;
      color: rgb(0, 0, 0);
      font-size: 20px;
    }
  
    .dropdown-links {
      display: center;
      position: absolute;
      top: 110px;
      left: 0px;
      width: 100%;
      z-index: 2;
      padding-bottom: 10px;
      font-variant: small-caps;
    }
  
    .dropdown-links.show {
      display: grid;
      justify-content: center;
    }
  
  }
 