
:root {
    --background-color: #111;
    --background-accent-color: #333;
    --accent-color: #B72714;
    --secondary-color: #e00000;
    --text-color: #eee;
}

html, body {
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    font-family: "Asap", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    margin: 0;
    padding: 0;
}



/* Headers */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--background-accent-color);
    color: var(--text-color);
    position: fixed;
    padding: 10px 20px;
    top: 0;
    left: 0;
    width: 100%;
}

header img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-link {
    text-decoration: none;
    color: inherit;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand h2 {
    font-size: 1.5em;
    color: var(--primary-color);
    font-weight: 700;
}

.links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.links a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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