* {
    box-sizing: border-box;
}
body {
    font-family: source-sans-pro, serif;
    margin: 0;
}
a:link {
    color: black;
}
a:visited {
    color: black;
}
a:hover {
    color: var(--blue-brand-color);
}
p {
    color: black;
}

/* Navigation */
header {
    padding: 5px;
    background-color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
header img {
    height: 2.5rem;
    vertical-align: middle;
}
header nav {
    display: flex;
}
header nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
header nav ul li {
    color: black;
    font-size: 14px;
    text-align: left;
    padding: 0 15px;
    letter-spacing: 2px;
    font-weight: bold;
}
header nav ul li a {
    color: black;
    text-decoration: none;
}
header nav ul li:hover a {
    color: var(--blue-brand-color);
    font-weight: bold;
}

/* Footer area*/
footer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-color: var(--purple-brand-color);
}
footer nav {
    display: flex;
}
footer nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: right;
}
footer nav ul li {
    color: white;
    font-size: 14px;
    text-align: center;
    letter-spacing: 2px;
    font-weight: bold;
    padding: 20px 10px;
}
footer nav ul li a {
    color: white;
    text-decoration: none;
}
footer nav ul li a:link {
    color: white;
}
footer nav ul li a:visited {
    color: white;
}
footer nav ul li a:hover {
    color: var(--blue-brand-color);
}