@font-face {
    font-family: 'JungleAdventurer';
    src: url('fonts/JungleAdventurer.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

:root {
    --text-primary: #eee;
    --text-secondary: #ccc;
}

a,
a:focus,
a:hover {
    color: var(--text-primary);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    color: #222;
    text-shadow: none;
    background-color: #ccc;
    border: .05rem solid #aaa;
}

html,
body {
    min-height: 100vh;
    background: url("/assets/background.webp") no-repeat center;
    background-size: cover;
}

body {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: var(--text-primary);
    text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
    font-family: 'JungleAdventurer', serif;
}

.masthead {
    margin-bottom: 2rem;
}

.masthead-brand {
    margin-bottom: 0;
}

.nav-masthead .nav-link {
    padding: .25rem 0;
    font-weight: 700;
    color: var(--text-primary);
    background-color: transparent;
    border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
    border-bottom-color: var(--text-secondary);
}

.nav-masthead .nav-link + .nav-link {
    margin-left: 1rem;
}

.nav-masthead .active {
    color: var(--text-primary);
    border-bottom-color: var(--text-secondary);
}

@media (min-width: 48em) {
    .masthead-brand {
        float: left;
    }

    .nav-masthead {
        float: right;
    }
}

@media (min-width: 1200px) {
    .cover-container {
        width: 90vw;
    }
}

@media (min-width: 1700px) {
    .cover-container {
        width: 60vw;
    }
}

.cover {
    padding: 0 1.5rem;
}

.cover .btn-lg {
    padding: .75rem 1.25rem;
    font-weight: 700;
}

.mastfoot {
    color: var(--text-primary);
}

.list-group-item {
    background: transparent;
    border-color: var(--text-secondary);
    color: var(--text-primary);
}