/* ======================
   BASIC RESET
====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ======================
   BODY
====================== */
body {
  font-family: "Georgia", "Times New Roman", serif;
  background: #fafafa;
  color: #222;
  line-height: 1.8;
}

/* ======================
   CONTAINER
====================== */
.container {
  max-width: 900px;
  margin: auto;
  padding: 24px;
}

/* ======================
   HEADER
====================== */
header {
  margin-bottom: 40px;
}

header h1 {
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 1px;
}

header p {
  color: #666;
  font-size: 14px;
  margin-top: 6px;
}

/* ======================
   NAVIGATION
====================== */
nav {
  margin-top: 12px;
}

nav a {
  text-decoration: none;
  margin-right: 16px;
  color: #555;
  font-size: 14px;
}

nav a:hover {
  color: #000;
}

/* ======================
   ARTICLE
====================== */
article {
  margin-bottom: 60px;
}

article h2 {
  font-size: 26px;
  margin-bottom: 18px;
}

article h3 {
  font-size: 20px;
  margin: 30px 0 12px;
}

article p {
  margin-bottom: 20px;
}

/* ======================
   IMAGES (ARTICLE)
====================== */
article img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 30px 0;
}

/* ======================
   FOOTER
====================== */
footer {
  margin-top: 80px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 13px;
  color: #666;
}

/* ======================
   LINKS
====================== */
a {
  color: #2a6fdb;
}

a:hover {
  text-decoration: underline;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 600px) {
  header h1 {
    font-size: 24px;
  }

  article h2 {
    font-size: 22px;
  }

  .container {
    padding: 18px;
  }
}