/* ------------------------------------------------------------------

	01. Standard styles
	02. Background image
	03. Icon footer
	04. Preloader
	05. Social box
	06. Twitch player embed
	07. 404 box
    08. Media Queries
    
-------------------------------------------------------------------- */

/*--------------------------------------------------
	01. Standard styles
---------------------------------------------------*/

@font-face {
	font-family: 'VCR OSD Mono';
	src: url('../fonts/VCR_OSD_MONO_1.001.ttf');
}

body {cursor: url(http://www.rw-designer.com/cursor-extern.php?id=42992);}

body {
	font-family: 'VCR OSD Mono', serif !important; 
	color: white;
	font-style: italic;
    background: black;
}

body, div {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#center {               
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);    
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

A:link {
    color: #FFFFFF; text-decoration: none
}

A:visited {
	color: #FFFFFF; text-decoration: none
}

A:hover {
	text-shadow: 0pt 0pt 0.3em white, 0pt 0pt 0.3em white;
	color: white; text-decoration: none
}

.scrollbar::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.3);
}

.scrollbar::-webkit-scrollbar {
    width: 2px;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.65);
}

/*--------------------------------------------------
	02. Background image
---------------------------------------------------*/

body {
    background-image: url("/assets/img/background-v2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1920px 1080px;
    overflow: hidden
}

/*--------------------------------------------------
	03. Icon footer
---------------------------------------------------*/

.iconFooter {
    text-align: center;
    position: absolute;
    top: 82%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.iconFooter-twitch {
    text-align: center;
    position: absolute;
    top: 82%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

/*--------------------------------------------------
	04. Preloader
---------------------------------------------------*/

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #110f0f;
    display:flex;
    justify-content: center;
    align-items: center;
}

.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #A31B1A;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #A31B1A;
    animation: loader-inner 2s infinite ease-in;
}

.content {
    display: none;
}

@keyframes loader {
    0% { transform: rotate(0deg);}
    25% { transform: rotate(180deg);}
    50% { transform: rotate(180deg);}
    75% { transform: rotate(360deg);}
    100% { transform: rotate(360deg);}
}

@keyframes loader-inner {
    0% { height: 0%;}
    25% { height: 0%;}
    50% { height: 100%;}
    75% { height: 100%;}
    100% { height: 0%;}
}

/*--------------------------------------------------
	05. Social box
---------------------------------------------------*/

.socials {
    padding: 15px 80px;
    border: 2px solid black;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.80;
    background-color: #000000;
}

/*--------------------------------------------------
	06. Twitch player embed
---------------------------------------------------*/

.twitchEmbed {
    border: 1px solid black;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    background-color: #000000;
}

/*--------------------------------------------------
	07. 404 box
---------------------------------------------------*/

.error-404 {
    padding: 15px 80px;
    border: 2px solid black;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.80;
    background-color: #000000;
}

/*--------------------------------------------------
	08. Media Queries
---------------------------------------------------*/

@media only screen and (max-width: 1920px) {
    .iconFooter-twitch {
        text-align: center;
        position: absolute;
        top: 92%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}