/* global.css */

/* Reset-ish */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}

/* Site-wide container */
.container {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Site-wide nav */
.navbar {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}

.navbar a {
  margin: 0 0.75rem;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.navbar a:hover {
  color: #0073e6;
}

/* Site-wide footer */
footer {
  border-top: 1px solid #e0e0e0;
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 2rem;
}

footer p {
  margin: 0 0 0.5rem;
  font-weight: bold;
}

.social-links a {
  color: #111;
  text-decoration: none;
  margin: 0 0.25rem;
}

.social-links a:hover {
  color: #0073e6;
}