/* style.css - Black & Red Raider/Discord Style */

body {
    background-color: black;
    color: red;
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: red;
    font-size: 2.5em;
}

nav {
    margin-top: 10px;
}

nav a {
    color: red;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: #ff5555; /* brighter red on hover */
    text-decoration: underline;
}

main {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

section {
    margin-bottom: 25px;
}

h2 {
    color: red;
    font-size: 1.8em;
    margin-bottom: 10px;
}

p, ul, li {
    color: red;
    font-size: 1em;
}

ul {
    list-style: none; /* remove bullets for cleaner style */
    padding-left: 0;
}

ul li::before {
    content: "● "; /* add a red bullet */
    color: red;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: red;
    font-size: 0.9em;
}