* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: #111;
  margin: 0;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  max-width: 850px;
  width: 100%;
}

h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.8rem;
}

.meta {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.2rem;
}

.meta a {
  color: #0070f3;
  text-decoration: none;
}

.meta a:hover {
  text-decoration: underline;
}

nav {
  margin-top: 3rem;
  font-size: 1rem;
}

nav a {
  color: #0070f3;
  text-decoration: none;
  margin-right: 20px;  
}

nav a:hover {
  text-decoration: underline;
}

article {
  margin-bottom: 2.8rem;
}

.meta a {
  margin-right: 1rem;
  text-decoration: none;
  color: #0073e6;
  font-weight: bold;
}

.meta a:hover {
  text-decoration: underline;
}


