/*

    Teamspeak Weiterleitung - Stylesheet
    Author: NiceKype
    Copyright by NiceKype

	Main Color: #aa1010

*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');

body {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
    color: #fff;
	background-image: url(../images/ts-background.png);
	background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
	background-size: cover;
}
a {
    text-decoration: none;
    color: #aa1010;
}
a:hover {
    color: #ff0000;
    font-weight: bold;
}
h1 {
	font-size: 55px;
	color: #aa1010;
	font-weight: 700;
    text-transform: uppercase;
}
h2 {
	font-size: 30px;
    text-transform: uppercase;
}

/* Copyright Info */
.copyright-info {
	color: #000;
	position: fixed;
	bottom:0;
    right:0;
	padding-bottom: 15px;
	padding-right: 20px;
	opacity: 0.5;
	z-index: 1;
	cursor: default;
	
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.copyright-info:hover {
    color: #000;
    font-weight: normal;
}

/* Selection Color */
::selection {
	background: #aa1010;
	color: white;
}
::-moz-selection {
	background: #aa1010;
	color: white;
}

/*** 
====================================================================
    Content Area
====================================================================
***/
.content {
	padding: 120px 20px 0 20px;
	text-align: center;
}
.weiterleiten-button {
	width: 600px;
	height: 50px;
	padding: 5px;
	border: 2px solid #aa1010;
	margin: 0 auto;
}
.weiterleiten-button:hover {
	width: 600px;
	padding: 5px;
	border: 2px solid #ff0000;
	font-weight: bold;
	color: #ff0000;
}
.weiterleiten-button:hover a {
	color: #ff0000;
}


/*** 
====================================================================
    Animated Loading Icon
====================================================================
***/
.lds-ring {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
	margin: 50px 0 50px 0;
}
.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid #fff;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/*** 
====================================================================
    Footer
====================================================================
***/
.footer {
    text-align: center;
    font-size: 14px;
    bottom: 0;
    width: 98%;
    margin: 0 auto;
    position: absolute;
}
.footer a {
    font-size: 16px;
    text-transform: uppercase;
	font-weight: bold;
	text-shadow: 0 0 2px black;
}
.footer img {
    width: 80px;
    height: 80px;
}
.footer .copyright {
    font-size: 14px;
}