:root {
    --main-red: #ec0006;
}
@font-face {
    font-family: 'MainFont';
    src: url('/hack.regular.ttf') format('truetype');
}
*{
    font-family: Consolas, "MainFont";
    color:#FFFFFF;
}
body {
    margin: 0px;
    padding: 0px;
    background-color:black;
}
button {
    background-color: black;
    border-color: white;
}
textarea {
    background-color:black;
    color:#FFFFFF;
    resize: none;
    padding: 2px;
}
input {
    background-color:black;
    color:#FFFFFF;
    padding: 2px;
    border: 1px solid #ffffff;
}
select {
    background-color:black;
    padding: 2px;
    border: 1px solid #ffffff;
}
a:link {
    text-decoration: none;
    color: var(--main-red);
}

a:visited {
    text-decoration: none;
    color: var(--main-red);
    /* color: #b10000; */
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}

.center {
    display: block;
    text-align: -moz-center;
    text-align: -webkit-center;
    margin-top: 55px;
}
.corner {
    position: fixed;
    right: 0;
    bottom: 0;
}
.main {
    margin-left: 10px;
    margin-top: 55px;
}
.main-content {
    min-height: calc(100vh - 46px);
    margin-top: 46px;
}

/* Header */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--main-red);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

li {
    height: 47px;
}

li:not(.casino) {
    float: left;
}
li.casino {
    float: right;
}

li .menu {
    font-size: 16px;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    height: 19px;
}

.casino .menu {
    padding: 14px 0px;
}
.casino img {
    display: block;
    text-align: center;
    width: 34px;
    float: left;
    padding: 5px 10px 5px 5px;
}
li a:hover:not(.active) {
    background-color: rgb(187, 0, 0);
}
li a:focus:not(.active) {
    background-color: rgb(187, 0, 0);
}
li .active {
    background-color: #000000;
}
li .icon {
    height: 47px;
    filter: brightness(0);
}
.skip-nav {
    position: fixed;
    transform: translateY(-200%);
    background-color: rgb(187, 0, 0);
}
.skip-nav:focus {
    transform: translateY(0);
}


/* Hotdog */
#hotdog {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 250px;
    transform: translateY(200%);
}
#hotdog:focus {
    transform: translateY(0);
}


/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-red); 
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(187, 0, 0);
}

::-webkit-scrollbar-corner {
    background: black;
}


/* footer */
footer {
    background-color: var(--main-red);
    text-align: center;
    width: 100%;
    padding-top: 1px;
    padding-bottom: 20px;
}

/* skull */
.skull-container {
    top: -100px;
    max-width: 80vh;
    position: relative;
}
.skull {
    width: 100%;
    animation: flicker 4s infinite linear;
}
.top-skull {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.skull-img {
    width: 100%;
    animation: hover 15s infinite;
    animation-timing-function: ease-in-out;
    background: none !important;
}
.skull .skull-img {
    filter: drop-shadow(0 0 14px #F00);
    /* 8-16 */
}
.skull .shadow {
    width: 60%;
    height: 0;
    margin-left: 20%;
    margin-right: 20%;
    padding-bottom: 15%;
    background-color: rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    filter: blur(25px);
    transform: translateY(-60%) !important; 
    animation: hover 15s infinite;
    animation-timing-function: ease-in-out;
}

@keyframes hover {
    0% {
        transform: translateY(0);
        background-color: rgba(255, 0, 0, 0.55);
    }
    10% {
        transform: translateY(15px);
        background-color: rgba(255, 0, 0, 0.70);
    }
    20% {
        transform: translateY(-5px);
        background-color: rgba(255, 0, 0, 0.50);
    }
    30% {
        transform: translateY(15px);
        background-color: rgba(255, 0, 0, 0.70);
    }
    40% {
        transform: translateY(0);
        background-color: rgba(255, 0, 0, 0.55);
    }
    50% {
        transform: translateY(10px);
        background-color: rgba(255, 0, 0, 0.65);
    }
    60% {
        transform: translateY(-5px);
        background-color: rgba(255, 0, 0, 0.50);
    }
    70% {
        transform: translateY(10px);
        background-color: rgba(255, 0, 0, 0.65);
    }
    80% {
        transform: translateY(0);
        background-color: rgba(255, 0, 0, 0.55);
    }
    90% {
        transform: translateY(20px);
        background-color: rgba(255, 0, 0, 0.75);
    }
    100% {
        transform: translateY(0px);
        background-color: rgba(255, 0, 0, 0.55);
    }
}

@keyframes flicker {
    0% {
        opacity: 0.1;
    }
    1% {
        opacity: 1;
    }
    2% {
        opacity: 0.1;
    }
    4% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}