* {
    --gap: 10px;
    --gap-small: 5px;
    --padding: 20px;
    --border: 2px solid black;
    --shadow: 4px 4px black;
}

html, body {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: Verdana, sans-serif;
    font-weight: bold;
}

a {
    color: black;
    transition: all 0.3s ease;
}

a:hover {
    background-color: black;
    color: white;
}

nav {
    font-family: Verdana, sans-serif;
    font-weight: bold;
    font-size: 20px;

    display: flex;
    width: 100%;
    color: black;
    border-bottom: var(--border);

    transition: all 0.1s ease;
}

nav .navbar-left {
    padding: 20px;
    box-sizing: border-box;
}

nav .navbar-right {
    margin-left: auto;
}

nav a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 20px 0;
    box-sizing: border-box;
}

nav ul li {
    display: inline;
    padding: 20px;
    box-sizing: border-box;
    border-left: var(--border);
    transition: all 0.3s ease;
}

nav ul li:hover {
    background-color: black;
    color: white;
}

nav .navbar-left a:hover {
    background-color: black;
    color: white;
}

nav .toggler {
    display: none;
    color: inherit;
    /* padding: .25rem .75rem; */
    /* font-size: 1.25rem; */
    background: 0 0;
    border: 1px solid transparent;
    border-radius: .25rem; */
}

@media (max-width: 1000px) {
    nav {
        flex-wrap: wrap;
        transition: all 0.2s ease;
    }
    nav .toggler {
        display: block;
        transition: all 0.2s ease;
    }
    nav .navbar-links {
        display: none;
        transition: all 0.2s ease;
    }
    nav.expanded {
        background-color: white;
    }
    nav.expanded .navbar-logo {
        color: black;
    }
    nav.expanded .toggler {
        color: black;
    }
    nav.expanded .navbar-links {
        display: block;
        color: black;
        width: 100vw;
    }
    nav.expanded li {
        display: block;
    }
    nav.expanded li a {
        color: black;
    }
}


.cover {
    height: 60vh;
    min-height: 60vh;
    perspective: 1px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.cover .cover-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover .cover-image {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background-image: url('/resources/img/missing.png');
    /* background-attachment: fixed; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateZ(-1px) scale(2);
}

.cover .cover-text {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 90vw;
}

.cover .cover-text h1 {
    font-size: 15vw;
    font-weight: 800;
    text-shadow: 4px 4px black;
}

@media (min-width: 550px) {
    .cover .cover-text h1 {
        font-size: 5em;
    }
}

.cover .cover-text .small {
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 4px 4px black;
    margin: 10px;
}

.bold {
    background-color: #212121;
    color: white;
    font-weight: bold;
}

.hidden {
    display:none;
}

.footer {
    text-align: center;
    padding: 50px 0 65px;
    vertical-align: middle;
}

.footer ul {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer .social-icons span {
    color: white;
    background-color: white;
}

.footer .social-icons span:hover {
    box-shadow: 3px 3px black;
}

.footer .social-icons .white {
    background-color: white;
    color: black;
}

.footer .social-icons a {
    text-decoration: none;
}

.footer .social-icons ul {
    list-style-type: none;
    padding: 0;
}

.footer .social-icons li {
    display: inline-block;
}

.footer .copyright {
    color: black;
}
