body {
    font-family: Arial, sans-serif;
  }
  
  .page {
    background-color: #f5f5f5;
    padding: 20px;
    margin: 20px auto;
    width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  
  p {
    margin-bottom: 10px;
  }
  
  .section-title {
    text-align: center;
    font-size: 24px;
    margin-top: 40px;
  }
  

#navbar {
    overflow: hidden;
    background-color: #333;
}

/* Style the links inside the navigation bar */
#navbar a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
#navbar a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
#navbar a.active {
    background-color: #4CAF50;
    color: white;
}
