@media only screen and (max-width: 768px) {

    html,
    body {
      width: 100%;
      overflow-x: hidden;
    }
  }

  body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: "Poppins", sans-serif;
  }

  .poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }


   /* Media Queries for Mobile Devices */
   @media (max-width: 640px) {
    .container {
      padding: 0 20px;
    }
  
    .md:flex {
      display: none;
    }
  
    #mobile-menu {
      z-index: 49;
    }
  
    #mobile-menu-toggle {
      display: block;
    }
  }

  .bg-color {
    background-color: #525252 !important;
  }


  
  /* Highlighted button styles */
  .portfolio-button.highlighted {
    background-color: #80db66; /* this color is to indicate active */
    color: #000;
    font-weight: 700;
  }

  .bg-banner {
    background-image: url('../images/001.png'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
  }


