/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #1a1a1a;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    color: #1a1a1a;
    margin: 10px 0;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
}

h2 {
    font-size: 2em;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

p, ul {
    font-size: 1.5em;
}
li {
    font-size: 1.0em;
}
.section {
    margin: 30px 0;
    padding: 10px;
    border-radius: 10px;
    background-color: #000000;
    border-color: ff0000;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding-left: 1.5em;
    position: relative;
}

ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-size: 1.5em;
    line-height: 0.6em;
}

a {
    color: #ff0000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
nav {
    color: #ff0000;
    font-size: 30px;
}

li::marker {
    color: #ff0000;
}
pre {
  display: block;
  width: max-content;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
  white-space: pre-wrap;
  font-family: monospace;
  line-height: 1.4;
}

