html{
    scroll-behavior: smooth;
}

body{
    background-color: #080708;
    color: #f7fff7;
    font-family: Poppins;
    margin: 0px;
}
nav {
    background-color: #f7fff7;
    border-radius: 50px;
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 5px;
    color: #080708;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
  }

  .ip {
    font-family: Merriweather Sans;
    font-weight: bold;
    background-color: #00c26e;
    border-radius: 50px;
    color: #f7fff7;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }

  .ip:hover {
    color: #f7fff7;
    background-color: #02cb60;
    transform: translateY(-5px);
    margin-top: 5px;
    margin-left: 5px;
  }

  .padded-text{
    padding: 20px;
  }

  nav.fixed {
    position: fixed;
    width: 99%;
    top: 0;
    animation: slide-down 1s ease;
  }

  @keyframes slide-down {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .logo {
    display: flex;
    align-items: center;
    margin-left: 10px;
    text-decoration: none;
    color: #080708;
  }
  
  .logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  nav h1 {
    margin: 0;
    line-height: 1;
    font-size: 24px;
    padding: 15px;
    padding-left: 0px;
  }
  

  nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden; 
    text-align: right;
    margin-left: 20px;
    justify-content: flex-end;
  }

  nav li:first-child {
    margin-left: 0;
  }
  
  nav li {
    display: inline-block;
  }
  
  nav li a {
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  nav li a:hover {
    color: #00c26e;
  }

  .content {
    margin-top: 100px;
  }

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #464646;
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #f7fff7;
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #f7fff7;
  }

  .hamburger {
    display: none;
  }

  @media (max-width: 1024px) {
    .hamburger{
      display: flex;
      color: #080708;
      font-weight: bolder; 
      font-size: 20px;
      margin-right: 10px;
    }

    .menu-icon{
      display: none;
    }

    .mobile-title {
      display: none;
    }

  }

  @media (max-width: 500px) {
    .hamburger{
      color: #080708;
      font-weight: bolder; 
      font-size: 20px;
    }

    .menu-icon{
      display: none;
    }

    .mobile-title {
      display: none;
    }

    .ip {
      display: none;
    }

  }