:root {
    --primary-color: #1A374D;
    --accent-color-1: #406882;
    --accent-color-2: #6998AB;
    --accent-color-3: #B1D0E0;
}

* {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Arial", "Helvectia", "sans-serif";
    padding: 0;
    margin: 0;
}

h1 {
    color: var(--accent-color-2);
    -webkit-animation: focus-in-contract-bck 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: focus-in-contract-bck 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes focus-in-contract-bck {
    0% {
        letter-spacing: 1em;
        -webkit-transform: translateZ(300px);
        transform: translateZ(300px);
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(12px);
        transform: translateZ(12px);
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes focus-in-contract-bck {
    0% {
        letter-spacing: 1em;
        -webkit-transform: translateZ(300px);
        transform: translateZ(300px);
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(12px);
        transform: translateZ(12px);
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

header a {
    text-decoration: none;
}

header {
    min-height: 50px;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: white;
    justify-content: space-between;
}

header #desktopNav {
    display: none;
}

footer {
    margin-top: 5rem;
}

#brand a {
    color: var(--accent-color-3);
}

#brand {
    display: flex;
    font-weight: bold;
    font-size: 20px;
    align-items: center;
    margin-left: 5px;
}

.desktopNavUl {
    margin: 0px 5px;
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.navUl {
    list-style: none;
}

.navUl a {
    color: white;
    text-decoration: none;
}

.desktopNavUl li {
    padding: 5px;
    margin-left: 10px;
}

.desktopNavUl li:hover {
    transform: scale(1.1);
    transition: .5s;
}

.mobileNav div {
    margin-right: 25px;
    align-content: center;
}

.mobileNavLink {
    font-size: 1.5rem;
}

#mobileNavButton {
    display: flex;
    justify-content: right;
    align-self: center;
    font-size: 20px;
    margin-right: 10px;
}

#mobileNav {
    width: 100%;
    height: 0;
    align-items: center;
}


#mobileNav ul {
    visibility: collapse;
    display: flex;
    opacity: 0;
    width: 100%;
    height: 0px;
    background-color: var(--accent-color-2);
    margin: 0;
}


.displayMobileLinks#mobileNav {
    display: flex;
    height: 100%;
}

.displayMobileLinks #mobileNavLinks {
    visibility: visible;
    opacity: 1;
    height: 100%;
    padding: 0px;
    flex-direction: column;
    align-items: center;
    list-style: none;
    transition: 1.0s;
}

#mobileNavLinks li {
    margin: 10px;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: var(--accent-color-3);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tab button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 15px;
    transition: 1.0s;
    font-size: 1rem;
}

.tab button:hover {
    background-color: var(--accent-color-1);
}

.tab button.active {
    background-color: var(--accent-color-1);
    color: white;
}

.contentContainer {
    display: flex;
    flex-direction: column;
    width: 85%;
    padding: 2px 16px;
    margin: 1rem auto;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: left;
}

.contentContainer h2 {
    color: var(--accent-color-1);
}

.contentContainer li {
    margin-bottom: 10px;
}

.dbzCard {
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 2px 16px;
    max-width: 85%;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
}

.dbzCard:hover {
    box-shadow: 0 4px 16px 0 var(--accent-color-2);
}

.cardAnchor {
    color: inherit;
    text-decoration: inherit;
}

.cardHeader {
    margin: 5px 2px 5px 2px;
    color: var(--accent-color-1);
}

.cardHeadline {
    text-align: center;
    font-weight: bolder;
}

.cardContent {
    text-align: center;
    margin: 5px 2px 5px 2px;
}

.cardActionLabel {
    font-weight: bold;
}

#MapColumnsGif {
    max-width: 100%;
}

@media (min-width: 600px) {
    header #desktopNav {
        display: flex;
    }

    .mobileNav {
        display: none;
    }

    #mobileNavButton {
        display: none;
    }

    .contentContainer {
        width: 95%;
    }

    .tab button {
        font-size: 1.25rem;
    }
}