:root {
    --background: #1a1a2e;
    --primary-text: #ff9f1c;
    --secondary-text: #00ffff;
    --highlight-text: #ff007f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    /*overflow: hidden;*/
    font-family: Hack, monospace;
    line-height: 1.6;
    color: #333;
    background-color: var(--background);
    /* height: 100%; */
}

.highlight {
    color: var(--highlight-text);
}

a {
    color: var(--highlight-text);
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.blur-background {
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(0.07rem);
}

/* Header */
header {
    color: var(--primary-text);
    padding: 20px 15px;
    text-align: center;
    max-width: 1000px;
    margin: 20px auto;
    /*box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);*/
    border-radius: 8px;
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

main {
    padding: 20px;
    max-width: 1000px;
    margin: 20px auto;
    /*background-color: var(--secondary);*/
    color: var(--secondary-text);
    box-shadow: 0 3px 6px rgba(1, 0.62, 0.1, 0.1);
    border-radius: 8px;
}

section {
    margin-bottom: 15px;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-text);
}

section p {
    margin-bottom: 5px;
}

.content {
    margin-left: 20px;
}

.list-section ul {
    list-style-type: square;
    padding: 0;
    border-spacing: 0 7px;
}

.list-section li {
    display: table-row;
}

.list-section span {
    display: table-cell;
    padding-right: 2em;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
