:root {
        --bg-color: #121212;
        --text-color: #e0e0e0;
        --accent-color: #00ffcc;
        --border-color: #333;
        --font-family: 'monospace';
}

html {
        background-color: var(--bg-color);
        color: var(--text-color);
        font-family: var(--font-family);
        height: 100%;
        display: flex;
        justify-content: center;
        padding: 30px;
}

body {
        max-width: 850px;
        width: 100%;
        overflow-y: auto;
        font-size: 16px;
        line-height: 1.7;
        color: var(--text-color);
}

h1 {
        font-size: 2.8em;
        margin-top: 0;
        margin-bottom: 0.5em;
        color: var(--accent-color);
        border-bottom: 2px solid var(--accent-color);
        padding-bottom: 10px;
}

p {
        margin-bottom: 1.5em;
        color: #b0b0b0;
}

a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
}

a:hover {
        color: #66ffcc;
        text-decoration: underline;
}

ul {
        list-style: square;
        padding-left: 0;
}

ul li {
        padding: 10px 0;
}

hr {
        border: none;
        border-top: 1px solid var(--border-color);
        margin: 2.5em 0;
        border-bottom: 2px solid var(--accent-color);

}

center {
        text-align: center;
        font-size: 0.85em;
        margin: 30px 0;
        color: #888;
}

center a {
        margin: 0 15px;
}

center a:hover {
        color: var(--accent-color);
}

center p {
        color: #888;
}
