

/* 

	* Website developed by Kai Micah Mills.
	* Copyright © 2015. All Rights Reserved.
	* https://www.twitter.com/KaiMicahMills

*/

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: #474747;
	position: relative;
	z-index: -1;
	min-width: 800px;
}

body {
	overflow: hidden;
}

video#bgvid { 
    position: fixed;
    top: 0%;
    left: 50%;
    min-width: 200%;
    min-height: 200%;
    width: 100%;
    height: 100%;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

@media screen and (max-device-width: 1000px) {
    html,body {
		background: url(../images/wall.jpg) no-repeat center center fixed; 
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		position: relative;
		z-index: 1
    }
    #bgvid {
        display: none;
    }
}

* {
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	transition: all 0.25s ease;
	cursor: url("../images/cursor.png"), auto;
}

a {
	text-decoration: none;
	color: inherit;
}

::selection {
	background: transparent;
}

::-moz-selection {
	background: transparent;
}

textarea:focus, input:focus{
    outline: 0;
}

@font-face {
	font-family: Buttont; src: url('fonts/RockoFLF.ttf');
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
	z-index: 5;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.inner {
    margin-left: auto;
    margin-right: auto; 
    width: 640px;
	margin-top: -100px;
}

.logo {
	width: 640px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.logo img {
	width: 100%;
}

.buttons {
	width: 100%;
	height: 110px;
	margin-top: 25px;
	min-width: 800px;
	position: fixed;
}

.button {
	height: 50px;
	width: 150px;
	float: left;
	margin: 5px;
    background-color: rgba(0,0,0,0.6);
	-webkit-box-shadow: 0px 0px 25px 3px rgba(0,0,0,0.7);
	-moz-box-shadow: 0px 0px 25px 3px rgba(0,0,0,0.7);
	box-shadow: 0px 0px 25px 3px rgba(0,0,0,0.7);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 25px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.button:hover {
	padding-bottom: 100px;
	background-color: rgba(0,0,0,0.5);
}

.button:hover .button-text {
	color: #ccc;
}

.button img {
	height: 100px;
	width: 100px;
	display: block;
	margin: auto;
	margin-top: 15px;
}

.button-text {
	font-family: Buttont;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	color: #7B7B7B;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding-top: 15px;
	font-style: italic;
}

.server-text {
	font-family: Buttont;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #7B7B7B;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-shadow: 1px 1px 6px #000;
	font-style: italic;
}

.server-ip {
	color: #ccc;
}

.server-ip:hover {
	color: #fff;
}

.server-ip:active {
	color: #A50B13;
}

.player-count {
	color: #ccc;
}

.copied-text {
	font-family: Buttont;
	font-size: 15px;
	position: absolute;
	color: #fff;
	letter-spacing: 2px;
	text-shadow: 1px 1px 6px #000;
	display: none;
	margin-top: -43px;
	margin-left: 440px;
	font-style: italic;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}