/* style.css */

/* 1. Basic body styling */
body {
    background-color: #f9f9f9; /* Sample background color */
    color: #333;               /* Sample text color */
    font-family: Arial, sans-serif;
    margin: 10px;
  }
  
  /* 2. Center h1, nav, and footer text */
  h1 {
    text-align: center;
  }
  
  nav {
    text-align: center;
    margin-bottom: 1em; /* optional spacing */
  }
  
  footer {
    text-align: center;
    margin-top: 2em; /* optional spacing */
  }