body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-image: url('img/web.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: #100;
  font-size: 24px;
  text-align: center;
}

#hamburger {
  display: none 
  
}



.logo {
  font-size: 1.75em;
  font-weight: bold;
  color: green;
}


.menu {
  
  display: flex;
  gap: 25px;
}

.menu a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.menu a:hover {
  color: green;
}







@media (max-width: 996px) {
  #hamburger {
    display: block;
    color: green;
  }


  .menu {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 20px 0;
    z-index: 999;
  }

  .menu a {
    margin: 10px 0;
    font-size: 20px;
  }

  
  .menu.active {
    display: flex;
  }

.logo {
  font-size: 1.00em;
  font-weight: bold;
  color: green;
}

}




#navbar {
  z-index: 1000;
  position: sticky;
  top: 0;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 28px;
  box-shadow: 0 10px 70px rgba(187, 255, 189, 0.45);
}








.charts-wrapper {
	padding-top:40px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 20px; 
  width: 100%;
 
}

.chart-container {

  width: 90%;
  max-width: 1900px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  border: 1px solid #ccc;
}

canvas {
  width: 100%;      
  height: 400px;  
  border: 1px solid #ccc;
}


footer {
  text-align: center;
  padding: 1px;
  background-color: white;
  color: black;
}