/* style.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: #333;
  color: #fff;
  padding: 1em;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1em;
}

nav a {
  color: #fff;
  text-decoration: none;
}

main {
  padding: 2em;
  text-align: center;
}

footer {
  background: #333;
  color: #fff;
  padding: 1em;
  text-align: center;
}

.non-center {
  text-align: left;
}
