:root {
    --white: #ffffff;
    --dark: #1d1d1d;
    --black: #111111;
    --dark-gray: #33383f;
    --light-gray: #dddddd;
    --dark-ish: #202020;
    --blurple: #5865F2;
}

.exo-2-font> {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.inter-font> {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}

.herobeta {
    z-index: 10;
    font-family: "Exo 2";
    text-align: center;
    font-size: clamp(24px, 4vw, 300%);
    font-weight: 500;
    line-height: 1.2em;
    text-shadow: 0px 4px 4px black;
    margin-bottom: -10px;

    color: white;
}
  
.herotitle {
    z-index: 10;
    font-family: "Exo 2";
    text-align: center;
    font-size: clamp(64px, 15vw, 1000%);
    font-weight: 850;
    line-height: 0.85em;
    text-shadow: 0px 4px 6px black;

    color: var(--white);
}

.herosubtitle {
    z-index: 10;
    font-family: "Exo 2";
    text-align: center;
    font-size: clamp(32px, 2vw, 1000%);
    font-weight: 500;
    line-height: 1.2em;
    text-shadow: 0px 4px 4px black;

    color: var(--white);

    @media screen and (max-height:600px)
    {
        color: transparent;
        text-shadow: 0px 0px 0px transparent;
    }
}

.h1
{
    font-family: "Exo 2";
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    color: var(--white);

    padding-bottom: 20px;
}

.h2
{
    font-family: "Exo 2";
    text-align: center;
    font-size: 24px;
    font-weight: 00;
    color: var(--light-gray);
}

.title-nav {
    font-family: "Exo 2";
    font-size: 24px;
    font-weight: 500;
    line-height: 2.0em;

    text-align: left;

    padding: 10px;

    color: var(--white);
    float: left;

    @media screen and (max-height:600px)
    {
        color: transparent;
    }
}

.text-nav {
    font-family: "Inter";
    font-size: 20px;
    font-weight: 400;
    line-height: 1.0em;

    padding-right: 20px;
    padding-left: 10px;
    padding-top: 24px;

    color: var(--light-gray);

    float: right;
    
    @media screen and ((max-width:900px) or (max-height:600px))
    { 
        float: none;
        padding: 10px;
        margin: 10px;
        margin-top: 0px;

        font-size: 24px;

        border-radius: 10px;
        background-color: var(--dark-ish);
        text-align: center;
    }
}

.discordbutton
{
    margin-right: 30px;

    @media screen and ((max-height:600px) or (max-width:900px)) 
    {
        background-color: var(--blurple); color: white;
        font-weight: 700;
        margin-right: 0px;
    }
}

.text-nav:hover {
    color: white;
}

.page-wrapper {
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    user-select: none;
}

.section-hero {
    aspect-ratio: 16 / 9;
    object-fit: cover;

    background-position: center center;
    background-size: cover;
    background-attachment: fixed;

    position: relative;
}

.container {
    align-items: center center;
    justify-content: center;
    vertical-align: middle;
    width: 100vw;
    height: 100vh;
    
    table-layout: fixed;
    display: table-cell;
}

.navbar {
    content: "";
    clear: both;
    float: right;
    display: table;
    position: fixed;
    align-items: left;
    
    width: 100vw;
    height: 45px;
    z-index: 100;
    
    padding-left: 10px;
    padding-right: 10px;

    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom-width: 3px;
    border-color: var(--dark);
    border-style: dashed;

    box-shadow: 4px 0px 10px black;
    
    background-color: var(--black);

    text-decoration: none;

    user-select: none;

    @media screen and ((max-height:600px)) {
        background-color: transparent;
        border-color: transparent;
        box-shadow: 0px 0px 0px transparent;
    }
}

.body {
    max-width: 1280px;
    color: var(--white);
    background-color: var(--dark-ish);
}

.footerelem {
    background-color: var(--black);
    color: var(--light-gray);

    max-width: 500px;

    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.copyright {
    font-weight: 600;
    color: var(--white);
}

.dottedborderbottom {
    border: 3px dashed var(--dark);
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-width: 3px;
}

.dottedbordertop {
    border: 3px dashed var(--dark);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-width: 3px;
}

.dark-ish {
    color: var(--dark-ish);
}

.dark {
    color: var(--dark);
}

.black {
    color: var(--black);
}

.white {
    color: var(--white);
}

.containerbody {
    align-items: center;

    max-width: 1280px;
    
    position: relative;
    display: block;
    overflow: auto;
    
    margin-left: auto;
    margin-right: auto;

    font-weight: 300;
}

.footercontainer {
    padding-bottom: 20px;
    position: relative;

    background-color: var(--black);
}

html {
    background-color: var(--dark-ish);
}

body {
    margin: 0;
    overflow-x: hidden;

    color: var(--white);
    font-family: inter;
}

a {
    text-decoration: none;
    color: inherit;
    font: inherit;
    text-shadow: inherit;
}

.centerblock
{
    display:block;
    margin-left: auto;
    margin-right: auto;

    padding-left: 20px;
    padding-right: 20px;
}

.floatleft
{
    float:left;
}

.floatright
{
    float:right;
}

.floatcenter
{
    float: center;
}

.table
{
    display: flex;
    margin-left: auto;
    margin-right: auto;

    padding-left: 20px;
    padding-right: 20px;
}

.fitwidth
{
    width:100%;
}
.leftmargin
{
    margin-left: 20px;
}
.rightmargin
{
    margin-right: 20px;
}

.paragraph
{
    padding-top: 10px;
    padding-bottom: 10px;

    text-align: left;
    text-indent: 1em;
}

.containerborder
{
    border: 3px dashed var(--dark);
    border-radius: 25px;
    background: var(--black);
    padding:30px;

    margin-top: 20px;
    margin-bottom: 20px;

    box-shadow: 0px 5px 10px black;
}

code {
    text-align: center;
    font-family: "EXO 2";
    font-weight: 500;
    color: rgb(108, 184, 255); 
}

.dropdown
{
    @media screen and ((max-height:600px) or (max-width:900px)) {
        position: absolute;
        text-align: left;
        min-width: 160px;
        text-decoration: none;
        
        right: 20px;
        top: 68px;
        
        background-color: var(--black);
        border: 3px dashed var(--dark);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-top-width: 0;

        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        margin-top: 0px;
    }

    @media screen and (max-height:600px) {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-top-width: 3px;
    }
}

.hidden
{
    @media screen and ((max-height:600px) or (max-width:900px)) {
        display:none;
        color: white;
    }
}

.icon
{
    z-index: 100;
    display: none;
    @media screen and ((max-height:600px) or (max-width:900px)) {
        display: block;
        right: 36px;
        top: 0px;
        position: absolute;
    }
}

b
{
    font-weight: 700;
}

.fade
{
    animation-name: fade;
    animation-duration: .5s;
}

.slideshow
{
    display:flex;
    z-index: -1;
    position: fixed;
    align-items: center center;

    justify-content: center;
    vertical-align: middle;
    width: 100vw;
    height: 100vh;
}

.acrylicbackground
{
    backdrop-filter: blur(4px);
    background-color: rgba(0.1,0.1,0.1,0.5);
}

img 
{
    display:flex;
    vertical-align:middle;
    height: 100%;
    width: 100vw;
    object-fit: cover;
}

.discordjoin
{
    height: 100px;
    float:center;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--blurple);
    color: white;
    
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    padding: 0px;

    border-radius: 20px;

    box-shadow: 0px 5px 10px black;
}

.centertext
{
    padding: 30px 0px;
}

.discorddesktop
{
    @media screen and (max-width: 800px)
    {
        display: none;
    }
}

.discordmobile
{
    display:none;
    @media screen and (max-width: 800px)
    {
        display: block;
    }
}