/* Retro 90s/Early 2000s Style */

/* ASCII Art - Fixed top-left corner */
.ascii-art {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.ascii-art pre {
  font-family: "Courier New", Courier, monospace;
  font-size: 9px;
  line-height: 1;
  margin: 33.6px 0 0 56px;
  padding: 0;
  color: #000;
  white-space: pre;
  background-color: #fff;
  display: inline-block;
}

body {
  font-family: "Times New Roman", Times, serif;
  background-color: #c0c0c0;
  color: #000;
  margin: 0;
  padding: 20px;
  line-height: 1.4;
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #c0c0c0;
}

/* Header */
header {
  margin-bottom: 20px;
}

h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2em;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #000;
}

.subtitle {
  font-size: 1.1em;
  margin: 5px 0 15px 0;
}

/* Horizontal Rules */
hr {
  border: none;
  border-top: 2px solid #808080;
  border-bottom: 1px solid #fff;
  margin: 20px 0;
}

/* Section Headers */
h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: underline;
  margin: 25px 0 15px 0;
  color: #000;
}

/* Table of Contents */
.toc {
  margin: 15px 0;
}

.toc ul {
  list-style-type: disc;
  margin: 10px 0 10px 30px;
  padding: 0;
}

.toc li {
  margin: 5px 0;
}

/* Links Section */
.links {
  margin: 15px 0;
}

.links ul {
  list-style-type: disc;
  margin: 10px 0 10px 30px;
  padding: 0;
}

.links li {
  margin: 5px 0;
}

.link-item {
  color: #0000ff;
  text-decoration: underline;
  font-size: 1em;
}

.link-item:hover {
  color: #ff0000;
}

.link-item:visited {
  color: #800080;
}

/* Info Sections */
.info-section {
  margin: 20px 0;
}

.info-section h3 {
  font-size: 1em;
  font-weight: normal;
  margin: 10px 0 5px 0;
}

.info-section p {
  margin: 5px 0;
}

/* Footer */
footer {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 2px solid #808080;
  font-size: 0.9em;
  text-align: center;
}

footer p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }
  
  h1 {
    font-size: 1.5em;
  }
  
  .links ul {
    margin-left: 20px;
  }
}
