/* TODO: Need to fix highlighting which section the user is on */

:root {
    --text: #ffffff;
    --background: #000000;
    --primary: #1a00df;
    --secondary: #0d0d0d; 
    --accent: #e45000;
} 

header {
    background-color: var(--secondary);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
} 

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

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

nav a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
}