*{
	font-family:arial;
	margin: 0	
	padding: 0;
}

header{
	height: 100vh;
	background-size: cover;
	background-position: center;
}

ul{
	float: right;
	list-style-type: none;
	margin-top: 25px;
}
ul li{
	display: inline-block;
}

ul li a{
	text-decoration: none;
	color: red;
	padding: 5px 20px;
	border: 1px solid transparent;
	transition: 0.6s ease;
}

ul li a:hover{
	background-color: red;
	color: black;
}

ul li.active a{
	background-color: red;
	color: black;
}

.main{
	max-width: 2000px;
	margin: auto;
}

.title{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align:center;
}

.title h1{
	color: red;
	font-size: 70px;
}

.button{
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align:center;
}

.btndis{
	border: 0px solid transparent;
	padding: 50px 50px;
	color: transparent;
	text-decoration: none;
	transition: 0.6s ease;
	background-image: url(./Images/discordlogo.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.btndis:hover{
		background-color: transparent;
	color: transparent;
}

.btnts{
		border: 0px solid transparent;
	padding: 50px 50px;
	color: transparent;
	text-decoration: none;
	transition: 0.6s ease;
	background-image: url(./Images/TSLogo.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.btnts:hover{
			background-color: transparent;
	color: transparent;
}

.copyright h1{
	color: red;
}