*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    background-color: oklch(0.9961 0.0034 325.6);
    font-family: "Montserrat", "Comic Sans MS", sans-serif;
    line-height: 1.6rem;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.container {
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1rem;
}

header {
    background-color: oklch(0.1454 0.062 264);
    color: oklch(0.9961 0.0034 325.6);
}

footer {
    background-color: oklch(0.3211 0 0);
    color: oklch(0.9961 0.0034 325.6); /* Dit is om het iets wat leesbaarder te maken. */
}

footer . highlight {
    font-weight: normal;
    font-style: normal;
    color: #0066cc;
}

footer .container> *:last-child {
    margin-bottom: 0;
}

nav ul {
    padding: 0;
    margin: 0;
    margin-left: -2rem;
    list-style: none;
}

nav a {
    padding: 1rem 2rem;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

nav ul li:nth-child(2) {
    background-color: oklch(0.250 0.062 264);
}

nav ul li:hover {
    background-color: oklch(0.300 0.062 264);
}

nav a:focus-visible {
    outline: 4px dotted #0066cc;
    outline-offset: 2px;
}

h2 + p {
    font-style: italic;
}

a[href*="mozilla"] {
    background-color: rgba(255, 165, 0, 0.3);
}

.highlight {
    font-weight: bold;
    font-style: italic;
}

.container--narrow {
    max-width: 40rem;
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 2rem;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

main {
    padding-top: 2vh;
    padding-bottom: 4vw;
}