::-webkit-scrollbar {width: 10px}
::-webkit-scrollbar-track {
    background: transparent;
    padding: 2px;
}
::-webkit-scrollbar-thumb {
    background: rgba(20,20,20,0.5);
    border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {background: rgb(20,20,20)}
::-webkit-scrollbar-thumb:active{background: rgb(15,15,15)}
body {
    margin: 0;
    scroll-behavior: smooth;
    height: 100vh;
}
noscript {
    padding: 10vh 30vw 10vh 10vw;
    position: absolute;
    z-index: 10;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    color: #fff;
    background: linear-gradient(150deg, rgba(0,0,0,0.7) 0%, rgb(11,140,205) 100%);
}
div#alert {
    background: #f00;
    color: #fff;
    padding: 5px;
    text-align: center;
    display: none;
}
div#alert > h3 {
    display: inline-block;
    font-size: 1.13rem;
}
div#alert > svg {
    float: right;
    width: 18px;
    height: 18px;
    margin: 2px;
    cursor: pointer;
    fill: white;
}
div#header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4px 8px;
    box-sizing: border-box;
    z-index: 5;
    transition: all 0.7s;
}
div#header:hover {
    background: rgba(0,0,0,0.15);
    box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.1);
}
div#header h4 {
    color: white;
    mix-blend-mode: difference;
    letter-spacing: normal;
}
h4.logo {
    text-shadow: 0px 0px 5px rgba(0,0,0,0.2);
    background: -webkit-linear-gradient(left, #00b0fb, #005add);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}
h4.logo::before,
h4.logo::after {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
h4.logo::before {margin-right: -2px}
div#header div.links {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
div#header div.links a {
    margin-right: 5px;
    padding: 3px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}
div#header div.links a:hover {box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.2);}
div.video {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
div.video > svg {
    height: 31.5vw;
    fill: rgb(255,255,255);
}
div.video > video {
    margin-top: -2vw;
    margin-left: -52vw;
    height: 18vw;
    width: 32vw;
}
div.video > div {
    width: 46vw;
    padding-left: 30px;
    box-sizing: border-box;
}
video:focus {outline: none}
div#footer {
    width: 100%;
    color: white;
    height: 50px;
    display: flex;
    padding: 0px 2vw;
    align-items: center;
    flex-direction: row;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    justify-content: space-between;
    box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.2);
}
div#footer > div {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
}
div#footer > div > a:not(:first-child) {margin-left: 6px}
div#footer > div svg {
    fill: #fff;
    height: 28px;
    overflow: hidden;
}
div#footer > div > div > a {
    padding: 14px 16px;
    box-sizing: border-box;
    cursor: pointer;
    color: white;
}
button {
    padding: 10px 13px;
    background: rgba(0,0,0,0.2);
    border: none;
    color: white;
    margin-top: 6px;
    outline: none;
    box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.2);
}
ul {
    list-style-type: circle;
    margin: 0;
    padding-left: 20px;
}
ul > li {margin: 8px 0}
@media screen and (max-width: 512px) {
    div#alert > h3.alertcnt {font-size: 1rem}
    div#header {
        flex-direction: column;
        backdrop-filter: blur(5px);
    }
    div#header > h4.logo {text-align: center}
    div#footer {
        flex-direction: column;
        height: 80px;
    }
}