*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background:
        center top 2em / 50% no-repeat url('images/digireg-logo-text.svg'),
        fixed center / cover no-repeat url('images/geokaart-raster.png'),
        silver;
}

nav {
    display: flex;
    /* gap: 1em; */
    padding: 1em;
    justify-content: center;
    background-color: rgb(255 255 255 / 50%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

a:link, a:visited {
    color: #3851a7;
    text-decoration: none;
}

a:hover, a:focus, a:active {
    color: #ec6521;
    text-decoration: underline;
}

nav * {
    padding: 0 0.5em;
}
nav *:nth-child(n + 2) {
    border-left: 3px solid black;
}