/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page */
body {
  background-color: #0c0c0c;
  color: #e0e0e0;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  font-size: 16px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Headings */
h1, h2, h3, h4 {
  color: #ff4040;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #444;
  padding-bottom: 0.2em;
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.3rem;
}

/* Links */
a {
  color: #7df9ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Paragraphs and Lists */
p, ul, ol {
  margin-bottom: 1rem;
}

code {
  background-color: #111;
  padding: 0.2em 0.4em;
  border: 1px solid #444;
  font-size: 90%;
}

/* Horizontal Rule */
hr {
  border: none;
  border-top: 1px dashed #444;
  margin: 2rem 0;
}

/* Optional Footer Style */
footer {
  font-size: 0.9rem;
  color: #777;
  margin-top: 3rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
}
