@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&family=Zen+Dots&display=swap');

html,
body {
    color: white;
    font-family: "Blinker", sans-serif;
    font-size: 16pt;
    padding: 0;
    margin: 0;
}

body {
    filter: url(/assets/kill.svg#kill) blur(0.5px);
}

@keyframes background {
    0% {
        background-position-y: 0px;
    }

    100% {
        background-position-y: 16px;
    }
}

html {
    background-color: black;
    background-repeat: repeat-y;
    background-size: 100% 16px;

}

li {
    margin-bottom: 8px;
}

h1 {
    text-align: center;
    font-family: "Zen Dots", sans-serif;
    font-size: 80px;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 32px;
}

a:link {
    color: #4baeff;
}

a:visited {
    color: #4baeff;
}

a:active {
    color: #008cff;
}

a:hover {
    color: #91cdff;
}

h1>a {
    color: #008cff;
}

h1>a:visited {
    color: #008cff;
}

h1>a:active {
    color: #008cff;
}

h1>a:hover {
    color: #4baeff;
}

h2 {
    font-size: 38px;
    color: #008cff
}

.wrapper {
    width: 640px;
    max-width: 100%;

    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.center-vertically {
    position: relative;
    left: 50%;
    top: 50vh;
    transform: translate(-50%, -50%);
}

.wrapper>div,
.wrapper>span>div .wrapper>a>div {
    background-color: #000;
    border: 4px solid #fff;
    padding: 8px 32px;
    margin-bottom: 32px;
    box-sizing: border-box;
    width: 100%;
}

.wrapper>span {
    display: block;
    margin-bottom: 32px;
}

.wrapper>a {
    display: block;
    margin-bottom: 32px;
}

.wrapper>a,
.wrapper>a:link {
    text-decoration: none;
}

.wrapper>a>div.joinbox {
    border: 2px solid #008cff;
    background-color: #008cff;
    text-align: center;
}

.wrapper>a>div.joinbox:hover {
    border: 2px solid #4baeff;
    background-color: #4baeff;
}

.wrapper>a>div.joinbox.loading {
    border: 2px solid #8a8a8a;
    background-color: #8a8a8a;
    text-align: center;
}

.wrapper>a>div.joinbox.loading:hover {
    border: 2px solid #8a8a8a;
    background-color: #8a8a8a;
    text-align: center;
}

.wrapper>a>div.joinbox.offline {
    border: 2px solid #b30000;
    background-color: #b30000;
}

.wrapper>a>div.joinbox.offline:hover {
    border: 2px solid #d45252;
    background-color: #d45252;
}

.wrapper>a>div.joinbox * {
    color: black !important;
    text-decoration: none;
}

ul.precedents {
    font-size: 24px;
    color: gray;
}
.teenyfix {
    font-size: 0px;
}

table {
    border: 2px solid gray;
    padding: 4px;
}

thead {
    background: gray;
    color: black;
    padding: 8px;
}

.skip-link {
    position:absolute;
    left:-100%;
    top:0;
    &:focus {
        left:0;
    }
}

@keyframes scanlines-animation {
    0% {
        background-position-y: -10px;
    }

    100% {
        background-position-y: 0px;
    }
}

.overlay {
    background: repeating-linear-gradient(transparent, transparent 2px, rgba(0, 0, 0, 0.75) 3.5px, rgba(0, 0, 0, 0.75) 3.5px);
    position: absolute;
    width: 100vw;
    height: 100%;
    background-size: auto 100%;
    background-position: center center;
    animation: scanlines-animation 1s linear infinite;
    pointer-events: none;
    z-index: 999999;
    filter: blur(0.5px);
}