/* General page layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

main {
    background: #fff;
  }
  
  header {
    /* text-align: center; */
    margin-bottom: 2rem;
  }
  
  section {
    margin-bottom: 2rem;
  }
  
  section h2 {
    margin-bottom: 0.5rem;
  }
  
  ul {
    list-style: disc;
  }
  
 nav ul li{
  line-height: normal;
 }


  p,
  li {
    line-height: 1.6;
  }


  nav {
    margin-bottom: 30px;
  }
  
  nav a:hover,
  nav a:focus {
    text-decoration: underline;
    color: #005fa3;
  }
  
  nav ul {
    display: flex;
    justify-content: flex-start; /* Aligns all links to the left */
    gap: 1rem;
    flex-wrap: wrap;
    list-style: none;
      }

section ul{
    margin-left: 1.5rem;
}
  
  a {
    text-decoration: none;
    color: #0077cc;
    font-weight: 500;
}
  
  a:focus, a:hover {
    text-decoration: underline;
  }

  nav a.active {
    color: #000;
    border-bottom: 2px solid #0077cc;
  }
  

  @media (min-width: 768px) {
    body{
      padding: 80px 0;
    }
    div{
      width: 65%;
    }
  }