body,
html {
    min-height: 100%;
}

body {
    background-image: url('../img/reitdiepwijk.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
}

.footer a {
    color: black;
    text-decoration: underline;
}

.footer a:hover {
    text-decoration: none;
    color: black;
}

.navbar {
    background-color: #0b465a;
}

.blink {
    animation: blinker 3s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}