/* ABOUTME: Main stylesheet for Pixel's personal homepage. */
/* ABOUTME: 2003-era aesthetic - simple, clean, readable. */

/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background-color: #f0efe9;
}

/* === Layout === */
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 15px;
}

/* === Header === */
.site-header {
  text-align: center;
  padding: 20px 0 10px;
  border-bottom: 2px solid #666;
  margin-bottom: 20px;
}

.site-title {
  font-family: "Courier New", Courier, monospace;
  font-size: 22px;
  font-weight: bold;
  color: #222;
  text-decoration: none;
  letter-spacing: 1px;
}

.site-title:hover {
  color: #555;
}

.site-subtitle {
  font-size: 11px;
  color: #777;
  font-style: italic;
  margin-top: 4px;
}

/* === Navigation === */
.site-nav {
  text-align: center;
  padding: 8px 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
}

.site-nav a {
  color: #0000cc;
  text-decoration: none;
  padding: 0 6px;
}

.site-nav a:visited {
  color: #551a8b;
}

.site-nav a:hover {
  text-decoration: underline;
  color: #cc0000;
}

.site-nav .sep {
  color: #999;
  padding: 0 2px;
}

/* === Content === */
.content {
  padding: 10px 0;
}

h1 {
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
  color: #222;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

h2 {
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  color: #333;
  margin-top: 20px;
  margin-bottom: 8px;
}

h3 {
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  color: #444;
  margin-top: 15px;
  margin-bottom: 6px;
}

p {
  margin-bottom: 12px;
}

a {
  color: #0000cc;
  text-decoration: underline;
}

a:visited {
  color: #551a8b;
}

a:hover {
  color: #cc0000;
}

hr {
  border: none;
  border-top: 1px dashed #aaa;
  margin: 20px 0;
}

ul, ol {
  margin: 0 0 12px 25px;
}

li {
  margin-bottom: 4px;
}

blockquote {
  border-left: 3px solid #999;
  padding-left: 12px;
  margin: 12px 0;
  color: #555;
  font-style: italic;
}

code {
  font-family: "Courier New", Courier, monospace;
  background-color: #e8e7e0;
  padding: 1px 4px;
  font-size: 13px;
}

pre {
  background-color: #e8e7e0;
  border: 1px solid #ccc;
  padding: 10px;
  overflow-x: auto;
  font-size: 12px;
  margin-bottom: 12px;
}

pre code {
  background: none;
  padding: 0;
}

/* === Footer === */
.site-footer {
  border-top: 2px solid #666;
  margin-top: 30px;
  padding-top: 10px;
  text-align: center;
  font-size: 11px;
  color: #888;
}

.site-footer .counter {
  font-family: "Courier New", Courier, monospace;
  background: #333;
  color: #0f0;
  padding: 2px 8px;
  display: inline-block;
  margin: 6px 0;
  letter-spacing: 2px;
}

.site-footer .updated {
  margin-top: 4px;
}

.site-footer a {
  color: #888;
  font-size: 10px;
}

/* === Welcome Box (homepage) === */
.welcome-box {
  border: 2px solid #999;
  background: #faf9f5;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.welcome-box h2 {
  font-size: 18px;
  margin-top: 0;
  border-bottom: none;
}

/* === Webring style links === */
.webring {
  text-align: center;
  font-size: 11px;
  margin-top: 8px;
  font-family: "Courier New", Courier, monospace;
}

.webring a {
  color: #0000cc;
  padding: 0 4px;
}

/* === Misc === */
.construction {
  font-size: 11px;
  color: #cc6600;
  text-align: center;
  font-style: italic;
}
