:root {
    --bg-color: #121212;
    --primary-text: #fff;
    --highlight-text: #B4E8FC;
    --secondary-text: #D5A0F5;
    --primary-color: #2F0A4E;
    --secondary-color: #282C36;
    --accent-1: #6B309A;
    --accent-2: #4C5E5E;
    --accent-3: #B4E8FC;
    --accent-4: #D5A0F5;
    --warning: #E02A1F;
    --note: #FFD700;
}

html {
    background-color: var(--bg-color);
    color: var(--primary-text);
    font-family: "Lato", system-ui;
    font-weight: 400;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Black Ops One", system-ui;
    font-weight: 400;
    color: var(--highlight-text);
}

.accent-1 {
    color: var(--accent-1);
}

.accent-2 {
    color: var(--accent-2);
}

.accent-3 {
    color: var(--accent-3);
}

.accent-4 {
    color: var(--accent-4);
}

.warning {
    background-color: var(--warning);
    color: var(--primary-text);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    border: 1px solid var(--warning);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    width: 500px;
    margin: 0 auto;
}

.note {
    color: var(--note);
    font-style: italic;
}

hr {
    margin: 1rem 0;
    border: 1px solid var(--secondary-color);
}