:root {
    --accent: azure;     
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

/* ----- Navbar ----- */

header {
    display: flex;
    justify-content: end;
    background-color: purple;
}

nav {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

nav .nav-container {
    display: flex;
    justify-content: end;
    width: 100%;
}

.menu-btn {
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    gap: 0.5rem;
    color: azure;
}

.menu-btn:hover {
    color: var(--accent);
}

#menu-icon {
    padding: 0.2rem;
}

.links {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 100%;
}

.link {
    text-align: center;
    width: 100%;
    padding: 0.5rem;
}

a {
    cursor: pointer;
}

a, a:visited {
    text-decoration: none;
    color: var(--accent);
}

span {
    display: flex;
    align-items: center;
}

.hide {
    display: none;
}

/* ----- Navbar ----- */

body {
    background-color: black;
}

footer {
    display: flex;
    justify-content: center;
    color: azure;
    padding: 1rem;
}