:root {
    /* Define all the variables */
    --primary-color: #C85F25;
}

body {
    font-family: 'Verdana', sans-serif;
    font-size: small;
    margin: 3rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

header {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    margin: 3rem;
}

nav > ul {
    list-style-type: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: start;
    gap: 1rem;
    padding: 0 0rem;
}