@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}


html {
    font-size: 62.5%;
    font-family: 'Poppins', sans-serif;
}
h2{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}


li {
    list-style: none;

}

a {
    text-decoration: none;
  
}
.header{
  border-bottom: 1px solid #E2E8F0;
}

.navbar {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 1.5rem 1.5rem;
  background-color: #94d2bd;

}

.hamburger {
  display: none;
  z-index: 2;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;

}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  margin-right: 7rem;
}

.nav-item {
  margin-left: 7rem;
  
}

.nav-link{
  font-size: 1.8rem;
  font-weight: 400;
  color: #475569;
  transition: all 0.3s ease 0s;
}

.nav-link:hover{
  color: #38a3a5;
}

.nav-logo {
  font-size: 2.1rem;
  font-weight: 500;
  color: #482ff7;
  position:fixed;
  left: 20px;
}

/* #incvsexpchart{
  justify-content: center;
  text-align: center;
  align-items: center;
} */
.graphs{
 
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}
#titl{
  display: none;
}

#titl.show{
  display: block;
  font-size: 20px;
}



@media only screen and (max-width: 768px) {
  *{
    overflow-x: hidden;
  }
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 5rem;
      flex-direction: column;
      background-color: #fff;
      width: 100%;
      border-radius: 10px;
      text-align: center;
      transition: 0.3s;
      box-shadow:
          0 10px 27px rgba(0, 0, 0, 0.05);

  }

  .nav-menu.active {
      left: 0;
  }

  .nav-item {
      margin: 2.5rem 0;
  }

  .hamburger {
      display: block;
      cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
      -webkit-transform: translateY(8px) rotate(45deg);
      transform: translateY(8px) rotate(45deg);
      
  }

  .hamburger.active .bar:nth-child(3) {
      -webkit-transform: translateY(-8px) rotate(-45deg);
      transform: translateY(-8px) rotate(-45deg);
      
  }
}

#view-balance{
  cursor: pointer;
}