@font-face {
    font-family: 'hack';
    src: url('/fonts/Hack-Regular.ttf');
}
@font-face {
    font-family: 'hack-bold';
    src: url('/fonts/Hack-Bold.ttf');
}
@font-face {
    font-family: 'hack-italic';
    src: url('/fonts/Hack-Italic.ttf');
}
@font-face {
    font-family: 'hack-bold-italic';
    src: url('/fonts/Hack-BoldItalic.ttf');
}
* {
    margin: 0 auto;
    padding: 0;
}
body {
    background-color: #0e1324;
    opacity: 1;
    /* background: radial-gradient(circle, transparent 20%, #13151c 20%, #13151c 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, #13151c 20%, #13151c 80%, transparent 80%, transparent) 100px 100px, linear-gradient(#252831 8px, transparent 8px) 0 -4px, linear-gradient(90deg, #252831 8px, #13151c 8px) -4px 0; */
    /* background: radial-gradient(circle, transparent 20%, #101423 20%, #101423 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, #101423 20%, #101423 80%, transparent 80%, transparent) 100px 100px, linear-gradient(#1b202e 8px, transparent 8px) 0 -4px, linear-gradient(90deg, #1b202e 8px, #101423 8px) -4px 0; */
    background-size: 200px 200px, 200px 200px, 100px 100px, 100px 100px;
    color:white;
    overflow-x: hidden;
}
.welcome_bar_bg {
    background-image: url('/images/welcome_bg_blurred.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    display:block;
    height:100vh;
    max-height:calc(100vh);
    width: 100vw;
    max-width: 100vw;
    position:absolute;
    z-index:1;
    /* filter: blur(10px); */
}
.welcome_bar {
    background-color: #3B3B5080;
    font-family: 'hack';
    font-size:16pt;
    display:block;
    text-align:center;
    height:100vh;
    max-height:calc(100vh);
    position:relative;
    z-index:2;
    /* backdrop-filter: blur(10px); */
}
.welcome_bar_text {
    /* align text vertically */
    display:block;
    position:relative;
    top:calc(50% - 40px);
    transform:translateY(-50%);
    padding: 30px;
    /* background-color: #00000080; */
    /* border: 1px solid #ced9ff80; */
    width:fit-content;
}
.title {
    font-family: 'hack-bold';
    font-size: 24pt;
    margin-bottom:10px;
}
.subtitle {
    font-family: 'hack-italic';
    font-size: 16pt;
}
.down_button {
    background-color: #000000a0;
    border-radius:100%;
    color: white;
    display:block;
    margin:auto;
    border: none;
    min-width:50px;
    min-height:50px;
    font-size:20pt;
    cursor:pointer;
    transform: scale(1.0);
    transition: all .2s ease-in-out;
}
.down_button:hover {
    background-color: #ffffffa0;
    border-radius:100%;
    color: black;
    display:block;
    margin:auto;
    border: none;
    min-width:50px;
    min-height:50px;
    font-size:20pt;
    cursor:pointer;
    transform: scale(1.2);
}
.down_button_div {
    display:block;
    position:absolute;
}
.top_bar {
    background-color: #1C2030a0;
    font-family: 'hack';
    font-size:16pt;
    display:block;
    text-align:center;
    height:40px;
    max-height:40px;
    width: 100vw;
    max-width: 100vw;
    position:fixed;
    z-index:10;
    transition:all .2s ease-in-out;
    transform: translateY(0px);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px 5px #00000020;
}
.top_bar_visible {
    background-color: #242838;
    font-family: 'hack';
    font-size:16pt;
    display:block;
    text-align:center;
    height:40px;
    max-height:40px;
    width: 100vw;
    max-width: 100vw;
    position:fixed;
    z-index:10;
    transition:all .2s ease-in-out;
    transform: translateY(0px);
    box-shadow: 0px 0px 10px 5px #00000080;
}
.top_bar_hidden {
    background-color: #242438;
    font-family: 'hack';
    font-size:16pt;
    display:block;
    text-align:center;
    height:40px;
    max-height:40px;
    width: 100vw;
    max-width: 100vw;
    position:fixed;
    z-index:10;
    transition:all .2s ease-in-out;
    transform: translateY(-40px);
}
.top_bar_logo {
    display:block;
    position:relative;
    width:fit-content;
    margin-left:0;
    transition: .1s all ease-in-out;
    width:40px;
    height:40px;
}
.top_bar_logo:hover {
    display:block;
    position:relative;
    width:fit-content;
    margin-left:0;
    background-color:#ffffff40;
    cursor:pointer;
}
.top_bar_logo > img {
    width:40px;
    height:40px;
}
.top_bar > a {
    width:40px;
    position:relative;
    display:block;
    margin-left:0;
}
.top_bar_visible > a {
    width:40px;
    position:relative;
    display:block;
    margin-left:0;
}
.top_bar_hidden > a {
    width:40px;
    position:relative;
    display:block;
    margin-left:0;
}

.card {
    margin:auto;
    margin-top:20px;
    margin-bottom:20px;
    width: fit-content;
    padding:40px;
    background-color: #242838a0;
    color: white;
    font-family: 'hack';
    font-size: 16pt;
    max-width:800px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px 5px #00000040;
    border: 1px solid #a9baff20;
}

.card_title > h1 {
    font-family: 'hack-bold';
    font-size: 16pt;
    margin-bottom:10px;
}
.card_content {
    border-top: 1px solid #ffffff;
    padding-top: 10px;
}
.card_content > h1 {
    font-family: 'hack';
    font-size: 12pt;
}

.card_content > h1 > a {
    color: #8ab3ff;
    text-decoration: none;
    transition: .1s all ease-in-out;
} 
.card_content > h1 > a:hover {
    color: #d7ecff;
    text-decoration: none;
    transition: .1s all ease-in-out;
}

.link {
    color: #8ab3ff;
    text-decoration: none;
    transition: .1s all ease-in-out;
} 
.link:hover {
    color: #d7ecff;
    text-decoration: none;
    transition: .1s all ease-in-out;
}
.role {
    font-family: 'hack-bold';
    margin-right:30px;
}
.role:before {
    content: "[";
    color: #646489;
}
.role:after {
    content: "]";
    color: #646489;
}
.to_right_member {
    text-align: right;
    float:right;
}
.about {
    max-width:1000px;
}
.bottom_header {
    background-color: #262b3e80;
    padding-top:20px;
    font-family: 'hack';
    font-size:8pt;
    color: #535c70;
    backdrop-filter: blur(10px);
}
.bottom_header_text {
    text-align:center;
}
.bottom_header_links > a {
    display:inline-block;
    color: #585872;
    transition: all .2s ease-in-out;
    text-decoration: none;
    padding:10px;
    background-color:#5e5e7f00;
    font-size:6pt;
    border-radius:5px;
}
.bottom_header_links > a:hover {
    color: #d5d5ff;
    background-color:#5e5e7fff;
}

.bottom_header_links > a > h1 > i {
    padding-right: 10px;
}

span.tab {
    margin-left: 40px;
}

div.tab {
    margin-left: 40px;
}

@media screen and (max-width:600px) {
    .rulescard {
        margin: auto!important;
    }
}
