body {
    margin: 0;
    font-size: 100%;
    background-color: #21212194;
    background-image: url(/assets/bg.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: color-dodge;
    color: #fff;
}

body main .dk-logo {
    width: 100%;
}

body main .dk-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body main .dk-brand-heading {
    text-align: center;
    color: #fff;
    margin-top: 4rem;
}

body main .dk-brand-heading h1 {
    font-size: 3.5rem;
}

body footer .dk-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

body footer .dk-copy {
    text-align: center;
}

/* NAVIGATION */
body header .nav-main {
    background-color: #212121;
}

body header .nav-main .nav-items {
    margin: 1rem auto;
    padding: 0;
}

body header .nav-main .nav-item {
    display: inline;
    text-align: center;
    padding: 1rem 1rem;
}

body header .nav-main .nav-item a {
    color: #fff;
    text-decoration: none;
}

body header .nav-main .nav-item:hover {
    background-color: #333333;
}