/*body {
  font-family: system-ui, sans-serif;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background-color: #f8f9fa;
  color: #333;
}

h1 {
  font-size: 2rem;
  color: #0066cc;
}

section {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
*/

/* Layout */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: system-ui, sans-serif;
  background: #f8f9fa;
  color: #333;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 2rem;
}

.content {
  width: 100%;
  max-width: 800px;
}

/* Footer */
footer {
  background-color: #0066cc;
  color: white;
  padding: 1rem;
  text-align: center;
}

/* Typography & Links */
h1 {
  color: #0066cc;
}

ul {
  padding-left: 1.5rem;
}

a {
  text-decoration: none;
  color: #0066cc;
}

a:hover {
  text-decoration: underline;
}
