/* style.css */
body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1em;
    line-height: 1.6;
  }


nav {
    margin-bottom: 1em;
    background-color: #f0f0f0;
    padding: 0.5em;
    border-radius: 6px;
  }
  
nav a {
    margin-right: 1em;
    text-decoration: none;
    color: #0066cc;
    font-weight: bold;
  }
  
nav a:hover {
    text-decoration: underline;
  }
  
  