*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    color: #00f181;
}

body {
    margin: 0;
    background-color: #111111;
    overflow: auto;
}

pre,
code {
    color: #00f181;
}

pre {
    border: 1px solid #00f181;
}

.turner {
    color: #00f181;
}

.games {
    color: #0d6efd;
}

.h-turner {
    font-family: 'mirage_gothicregular', Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #00f181;
}

.h-games {
    font-family: 'mirage_gothicregular', Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #0d6efd;
}

.nav-bg {
    background-image: linear-gradient(#212529, #000000);
}

@-webkit-keyframes swinging {
    0% {
        -webkit-transform: rotate(10deg);
    }

    50% {
        -webkit-transform: rotate(-5deg)
    }

    100% {
        -webkit-transform: rotate(10deg);
    }
}

@keyframes swinging {
    0% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-5deg)
    }

    100% {
        transform: rotate(10deg);
    }
}


@-webkit-keyframes sleeping {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes sleeping {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#swinger {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    transform-box: fill-box;
    -webkit-animation: swinging 3.5s ease-in-out forwards infinite;
    animation: swinging 3.5s ease-in-out forwards infinite;
}

#zone {
    opacity: 0;
    -webkit-animation: sleeping 3.5s ease-in-out forwards infinite;
    animation: sleeping 3.5s ease-in-out forwards infinite;
}

#ztwo {
    opacity: 0;
    -webkit-animation: sleeping 3.5s ease-in-out forwards infinite;
    animation: sleeping 3.5s ease-in-out forwards infinite;
    animation-delay: 0.4s;
    -website-animation-delay: 0.4s;
}

#zthree {
    opacity: 0;
    -webkit-animation: sleeping 3.5s ease-in-out forwards infinite;
    animation: sleeping 3.5s ease-in-out forwards infinite;
    animation-delay: 0.7s;
    -website-animation-delay: 0.7s;
}

#zfour {
    opacity: 0;
    -webkit-animation: sleeping 3.5s ease-in-out forwards infinite;
    animation: sleeping 3.5s ease-in-out forwards infinite;
    animation-delay: 1s;
    -website-animation-delay: 1s;
}

#zfive {
    opacity: 0;
    -webkit-animation: sleeping 3.5s ease-in-out forwards infinite;
    animation: sleeping 3.5s ease-in-out forwards infinite;
    animation-delay: 1.3s;
    -website-animation-delay: 1.3s;
}

.container {
    /* text-align:center; */
    overflow: hidden;
}

svg {
    max-width: 1000px;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 200, 0, 0.5);
}

.accordion .alert {
    font-size: 1rem;
    cursor: pointer;
}

.accordion .alert:hover {
    background-color: black;
    color: white;
}

.accordion .alert:after {
    content: "-";
    float: right;
}

.accordion .alert.collapsed:after {
    content: "+";
}

@media (min-width: 1px) {
    .theSideBar {
        visibility: hidden;
    }
}

@media (min-width: 1001px) {
    .theSideBar {
        visibility: visible;
    }
}

@font-face {
    font-family: 'mirage_gothicregular';
    src: url('./fonts/mirage_final-webfont.woff2') format('woff2'),
        url('./fonts/mirage_final-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}