* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html:not(.js) .no-js-hidden {
    display: none;
}

html {
    scroll-behavior: smooth;
}


@font-face {
    font-family: 'britannic';
    src: url('layouts/britannic_bold_t.-webfont.eot');
    src: url('layouts/britannic_bold_t.-webfont.eot?#iefix') format('embedded-opentype'),
    url('layouts/britannic_bold_t.-webfont.woff2') format('woff2'),
    url('layouts/britannic_bold_t.-webfont.woff') format('woff'),
    url('layouts/britannic_bold_t.-webfont.ttf') format('truetype'),
    url('layouts/britannic_bold_t.-webfont.svg#webfontregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'pixelfont7';
    src: url('layouts/pixel_font-7-webfont.eot');
    src: url('layouts/pixel_font-7-webfont.eot?#iefix') format('embedded-opentype'),
    url('layouts/pixel_font-7-webfont.woff2') format('woff2'),
    url('layouts/pixel_font-7-webfont.woff') format('woff'),
    url('layouts/pixel_font-7-webfont.ttf') format('truetype'),
    url('layouts/pixel_font-7-webfont.svg#pixel_font7regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
body {
    line-height: 1.2em;
    background-color: #000000;
    color: #11bfb5;
    font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
label, .label {
    color: #11BFB5;
    font-family: pixelfont7, britannic, "Consolas", fantasy;
    font-size: 1rem;
}


hr {
    height: 6px;
    background: url(../img/hr.png) repeat-x 0 50%;
    border: 0;
    padding: 1rem 0;
    max-width: 600px;
}

.pure-img-responsive {
    max-width: 100%;
    height: auto;
}


/*
 * -- BUTTON STYLES --
 */
.atp-btn {
    font-size: 40px;
    padding: 14px 21px;
    font-family: pixelfont7, britannic, "Consolas", fantasy;
    outline: 1px solid #11bfb5;
    color: #11bfb5;
    background: none;
    border: none;
    text-decoration: none;
    line-height: 1.4;
    display: inline-block;
}

.atp-btn:hover,
.atp-btn:focus {
    outline: 1px solid #11bfb5 !important;
    background: #11bfb566 !important;
}

.atp-btn-primary {
    outline: 1px solid #ff26ab !important;
    color: #ff26ab !important;
    background: none !important;
}

.atp-btn-primary:hover,
.atp-btn-primary:focus {
    outline: 1px solid #ff26ab !important;
    background: #ff26ab66 !important;
}

.atp-btn-highlight {
    outline: 1px solid #ffdf4a !important;
    color: #ffdf4a !important;
    background: none !important;
}

.atp-btn-highlight:hover,
.atp-btn-highlight:focus {
    outline: 1px solid #ffdf4a !important;
    background: #ffdf4a66 !important;
}

/*
 * -- LAYOUT STYLES --
 * These are some useful classes which I will need
 */
.l-box {
    padding: 0 1.5em;
}

.l-box-lrg {
    padding: 1em;
    text-align: center;
    margin: auto;
}

.is-center {
    text-align: center;
    margin: auto;
}

.w-100 {
    max-width: 100%;
    height: auto;
}

.d-ib {
    display: inline-block;
}

/** helpers */
.fs-m {
    font-size: 20px;
}

.fs-l {
    font-size: 40px;
}

.pixelfont {
    font-family: pixelfont7, britannic, "Consolas", fantasy;
}

/*
 * -- PURE FORM STYLES --
 * Style the form inputs and labels
 */
.pure-form label, .pure-form .label {
    margin: 1em 0 0;
    font-weight: bold;
    font-size: 100%;
    color: white;
}

.pure-form input[type] {
    border: 1px solid #ffdf4a;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    font-size: 100%;
    width: 100%;
    margin-bottom: 1em;
    color: #ffdf4a;
}

.pure-form input[type]:focus {
    border: 1px solid #ffdf4a;
    outline: 2px solid #ffdf4a;
}


/*
 * -- MENU STYLES --
 * I want to customize how my .pure-menu looks at the top of the page
 */

.home-menu {
    padding: 10px 0 0 0;
    text-align: center;
    /*box-shadow: 0 2px 2px #11bfb5;*/
}

.home-menu {
    background: #000000DD;
    color: #000000;
}

.topmenu {
    /* I need a higher z-index here because of the scroll-over effect. */
    z-index: 4;
}

.topmenu::after {
    content: "";
    height: 6px;
    background: url(../img/hr.png) repeat-x 0 50%;
    border: 0;
    width: 100%;
    display: block;
    padding-top: 8px;
}

.home-menu .pure-menu-heading {
    font-family: pixelfont7, britannic, "Consolas", fantasy;
    font-size: 40px;
    line-height: 10px;
    color: #FFFFFF;
    display: block;
    width: 100%;
}

.home-menu li a,
.home-menu li a:visited {
    margin-right: 7px;
    font-size: 20px;
    font-family: pixelfont7, britannic, "Consolas", fantasy;
    outline: 1px solid #11bfb5;
    color: #11bfb5;
}

.home-menu li a:hover,
.home-menu li a:focus {
    background: none;
    outline: 1px solid #11bfb5;
    background: #11bfb566;
}

.home-menu ul {
    display: block;
    text-align: center;
}

.langSwitcher {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    color: #CCC;
}

/*
 * -- SPLASH STYLES --
 * This is the blue top section that appears on the page.
 */
.splash {
    /* absolute center .splash within .splash-container */
    text-align: center;
}

.spaceBackground {
    background: url(../img/spaceBG.jpg) no-repeat center 0 #000000;
    background-size: 2048px auto;
    /*box-shadow: inset 0px -30px 80px 0px rgba(0, 0, 0, 0.9);*/
    box-shadow: inset 0px -6px 60px 21px rgba(0, 0, 0, 0.9);
}

.screenshot {
    margin-bottom: 1rem;
    outline: 5px solid black;
}

.splash h1 {
    padding: 2rem 0 0 0;
    margin: 3rem 0 -1rem 0;
}

/* This is the subheading that appears on the blue section */
.splash-subhead {
    font-family: pixelfont7, britannic, "Consolas", fantasy;
    color: #11BFB5;
    padding: 1rem 0 1.5rem 0;
    margin: 0;
    font-size: 24px;
    line-height: 1.4;
}

.splash-subhead-headline {
    font-size: 40px;
    line-height: 1.2;
    color: white;
}

.presskit-link {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: white;
}

.presskit-link a {
    color: white;
    font-family: pixelfont7, britannic, "Consolas", fantasy;
    font-size: 20px;
}

/*
 * -- CONTENT STYLES --
 * This represents the content area (everything below the blue section)
 */
.content-wrapper {
    width: 100%;
    min-height: 12%;
    z-index: 2;
}

.trailerbox {
    text-align: center;
    margin: auto;
}

.trailerbox iframe {
    margin-bottom: 0rem;
}

/* We want to give the content area some more padding */
.content {
    padding: 1em 1em 1em;
}

/* This is the class used for the main content headers (<h2>) */
.content-head {
    font-family: pixelfont7, britannic, "Consolas", fantasy;
    color: white;
    font-size: 40px;
    line-height: 1;
}

/* This is the class used for the content sub-headers (<h3>) */
.content-subhead {
    font-family: pixelfont7, britannic, "Consolas", fantasy;
    color: #11beb4;
    font-size: 20px;
    font-weight: normal;
}

.bullet-head {
    font-family: pixelfont7, britannic, "Consolas", fantasy;
    color: white;
    font-size: 20px;
    font-weight: normal;
}

.bullet-head + p {
    color: #11beb4;
    font-family: pixelfont7, britannic, "Consolas", fantasy;
}

.content-subhead i {
    margin-right: 7px;
}

/* This is the class used for the footer */
.footer {
    background: #155755;
    color: #11beb4;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.mail-legals {
    font-family: pixelfont7, britannic, "Consolas", fantasy;
    color: #11beb4;
    font-size: 15px;
    line-height: 1.2;
}

.signature {
    font-family: pixelfont7, britannic, "Consolas", fantasy;
    color: white;
    font-size: 20px;
    line-height: 1;
}

#radioLang ul, #radioLang li, #radioLang input, #radioLang label {
    display: inline;
    width: auto;
    padding: 0.5rem;
}

.submit {
    margin-top: 3rem;
}


/**
Social
 */
.wrapper a {
    text-decoration: none;
}

.wrapper a > div {
    display: inline-block;
    width: 75px;
    height: 75px;
    line-height: 75px;
    margin: 0 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    border: 5px solid white;
    transition: all 0.25s ease;
    color: white;
}

.wrapper a .fab {
    color: white;
    margin-top: 0.8rem;
    transition: all 0.25s ease;
}

.wrapper a:hover .facebook, .wrapper a:focus .facebook {
    border: 5px solid #3b5998;
    box-shadow: 0 0 15px #3b5998;
    transition: all 0.25s ease;
}

.wrapper a:hover .fa-facebook-f, .wrapper a:focus .fa-facebook-f {
    color: #3b5998;
    text-shadow: 0 0 15px #3b5998;
    transition: all 0.25s ease;
}

.wrapper a:hover .twitter, .wrapper a:focus .twitter {
    border: 5px solid #00aced;
    box-shadow: 0 0 15px #00aced;
    transition: all 0.25s ease;
}

.wrapper a:hover .fa-twitter, .wrapper a:focus .fa-twitter {
    color: #00aced;
    text-shadow: 0 0 15px #00aced;
    transition: all 0.25s ease;
}

.wrapper a:hover .discord, .wrapper a:focus .discord {
    border: 5px solid #697fc9;
    box-shadow: 0 0 15px #697fc9;
    transition: all 0.25s ease;
}

.wrapper a:hover .fa-discord, .wrapper a:focus .fa-discord {
    color: #697fc9;
    text-shadow: 0 0 15px #697fc9;
    transition: all 0.25s ease;
}

/*
 * MQ
 */
.visible-md {
    display: none;
}

@media (min-width: 540px) {
    .visible-md {
        display: initial;
    }
}