/* Custom properties for easy color changing */
:root {
    --bg-color: #1a1a2e;
    --text-color: #ffffff;
    --accent-color: #00f5d4;
    --card-bg: #242442;
    --border-color: #7b2cbf;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* Centers and constrains the webpage content */
.site-container {
    max-width: 700px;
    width: 100%;
}

header {
    text-align: center;
    border-bottom: 3px double var(--accent-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    color: var(--accent-color);
    text-shadow: 2px 2px var(--border-color);
    margin: 0 0 10px 0;
}

.subtitle {
    font-style: italic;
    opacity: 0.8;
    margin: 0;
}

/* Styles the content blocks */
section {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 4px 4px 0px var(--accent-color);
}

h2 {
    color: var(--accent-color);
    margin-top: 0;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 5px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.6;
}
