:root {
    --nav-height: 220px;
    --col-bg-dark: #080b0d;
    --col-bg-mid: #060d15;
    --col-bg-light: #0a1521;
    --col-bg-lighter: #425f80;
    --col-primary-dark: #321a02;
    --col-primary-mid: #dd7101;
    --col-primary-light: #fbe459;
    --col-primary-mid-semitrans: #dd710140;
}

html {
    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    background-color: var(--col-bg-dark);
    color: #ffffff;
    padding: 0;
    margin: 0;
}
body {
    padding: var(--nav-height) 0 2em;
}
small {
    font-size: 50%;
    font-weight: 300;
}

.nav {
    background-color: var(--col-bg-mid);
    background-image: url("doetjesGamingBanner.jpg");
    background-size: cover;
    background-position: 50% 47%;
    margin: 0;
    padding: 0.5em 1em;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    border-bottom: 2px solid var(--col-primary-dark);
    box-shadow: 0 -25px 50px var(--col-primary-mid);
    z-index: 1;
}

.carousel {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: stretch;
    gap: 2em;
    padding: 2em;
}
.carousel .carousel-item {
    background-color: var(--col-bg-lighter);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    min-height: 650px;
    padding: 1em;
    position: relative;
    transform: scale(100%);
    box-shadow: 0 0 -30px rgba(255, 255, 255, 0.25);
    transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}
.carousel .carousel-item:hover {
    background-color: #ffffff;
    cursor: pointer;
    transform: scale(110%);
    box-shadow: 0 10px 30px var(--col-primary-mid-semitrans);
}
.carousel .carousel-item h2 {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-shadow: 0 0 0 #ffffff;
    transition: text-shadow 0.4s ease;
}
.carousel .carousel-item:hover h2 {
    text-shadow: 0 0 12px #ffffff;
}
.carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    mix-blend-mode: multiply;
}
.carousel .carousel-item .online-status {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0.5em;
    right: 0.5em;
    border-radius: 50%;
    background-color: #888;
}
.carousel .carousel-item .online-status.online {
    background-color: #0f0;
}
.carousel .carousel-item .online-status.offline {
    background-color: #f00;
}


@keyframes spinnerflash {
    0% {
        background-color: rgba(255, 255, 255, 1);
        width: 25%;
        height: 25%;
    }

    50% {
        background-color: rgba(255, 255, 255, 0);
        width: 20%;
        height: 20%;
    }
}

.spinner {
    position: relative;
}
.spinner .flasher {
    width: 25%;
    height: 25%;
    border-radius: 50%;
    position: absolute;
    animation: spinnerflash 1.5s linear 0s infinite;
}
.spinner .flasher:nth-of-type(1) {
    left: 20%;
    top: 5%;
    animation-delay: 0s;
}
.spinner .flasher:nth-of-type(2) {
    right: 20%;
    top: 5%;
    animation-delay: 0.25s;
}
.spinner .flasher:nth-of-type(3) {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}
.spinner .flasher:nth-of-type(4) {
    right: 20%;
    bottom: 5%;
    animation-delay: 0.75s;
}
.spinner .flasher:nth-of-type(5) {
    left: 20%;
    bottom: 5%;
    animation-delay: 1s;
}
.spinner .flasher:nth-of-type(6) {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1.25s;
}


@media only screen and (max-width: 600px) {
    .carousel {
        flex-flow: column nowrap;
    }
    .carousel .carousel-item {
        width: auto;
    }
}