@font-face {
	font-family: Ubuntu;
	src: url('../resources/fonts/Ubuntu-Regular.ttf');
}

* {
	font-family: Ubuntu, sans-serif;
	margin: 0;
	padding: 0;
}

html {
	width: 100%;
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background-image: url('../resources/images/background.png');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

header {
	position: relative;
	width: calc(100% - 20px);
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.5);
}

header img {
	position: absolute;
	z-index: 2;
	width: 8vw;
}

header h1 {
	width: 100%;
	color: #FFFFFF;
	text-align: center;
}

.slideShow {
	position: relative;
	overflow: hidden;
}

.slideShow img {
	width: 100%;
}

.slideShow > img {
	visibility: hidden;
}

.slideShow > div {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 100%;
	width: 100%;
	-webkit-animation: slide 28s ease infinite;
}

.slideShow .text {
	position: absolute;
	z-index: 1;
	top: 50px;
	left: 10%;
	right: 60%;
	color: #FFFFFF;
}

.slideShow .text h1 {
	margin-bottom: 20px;
}

.slideShow div:nth-of-type(1) {
	animation-delay: -1s;
}

.slideShow div:nth-of-type(2) {
	animation-delay: 6s;
}

.slideShow div:nth-of-type(3) {
	animation-delay: 13s;
}

.slideShow div:nth-of-type(4) {
	animation-delay: 20s;
}

@-webkit-keyframes slide {
	0% {left: 100%}
	6.25% {left: 0%}
	25% {left: 0%}
	31.25% {left: -100%}
	100% {left: -100%}
}

.content {
	flex: 1 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2vw;
	padding-bottom: 50px;
}

.content > a {
	display: block;
	padding: 50px;
	color: #ffffff;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
}

.link-teamspeak {
	background-color: rgb(52 18 237 / 92%);
}

.link-music-bot {
	background-color: rgb(222 35 68 / 92%)
}
