html, body
{
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
a { text-decoration: none; }

.background {
	position: absolute;
	background: #000000;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.background video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(1.05);
	filter: blur(3px);
}

.background .overlay {
	position: absolute;
	background: #344599;
	opacity: 0.3;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

.titlecard {
	position: absolute;
	width: 100%;
	max-width: calc(700px + 10%);
	top: calc(50% - 50px);
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 3% 5% 3% 5%;
	box-shadow: rgba(0, 0, 0, 0.25) 0 0 32px;
	background: #344599;
	box-sizing: border-box;
}

.titlecard img.logo {
	width: 100%;
}

.titlecard .description {
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	color: #ecc547;
	margin-bottom: 2.5%;
}

.titlecard .buttons {
	width: 100%;
	height: 60px;
	float: left;
	text-align: center;
}

.titlecard .button {
	position: relative;
	height: 100%;
	padding: 0 16px 0 16px;
	margin-right: 5%;
	display: inline-block;
	text-align: center;
}
.titlecard .button:last-child
{
	margin-right: 0;
}

.titlecard .button img  {
	height: 100%;
	margin-right: 8px;
	display: inline-block;
	z-index: 10;
	position: relative;
}
.titlecard .button .label {
	position: relative;
	display: inline-block;

	font-weight: bold;
	font-size: 1.5em;
	text-transform: uppercase;
	text-decoration: none;

	height: 60px;
	line-height: 60px;
	vertical-align: top;

	z-index: 10;
	transition: color 0.1s;
}
.titlecard .button.news .label { color: #3dd4dd; }
.titlecard .button.games .label { color: #ea92d1; }
.titlecard .button.team .label { color: #3bdf75; }

.titlecard .button .fill {
	position: absolute;
	left: 0;
	top: 60px;
	bottom: 0;
	right: 0;
	transition: top 0.1s;
}
.titlecard .button.news .fill { background: #3dd4dd; }
.titlecard .button.games .fill { background: #ea92d1; }
.titlecard .button.team .fill { background: #3bdf75; }
.titlecard .button:hover .fill { top: 0; }
.titlecard .button:hover .label { color: #344599 !important; }

.copyright {
	position: absolute;
	right: 32px;
	bottom: 32px;
	color: #fff;
	opacity: 0.8;
	font-weight: bold;
	font-size: 1.1em;
	text-transform: uppercase;
}

.links {
	position: absolute;
	top: 32px;
	right: 32px;
	width: 32px;
	text-align: center;
}

.links .link {
	display: inline-block;
	width: 32px;
	height: 32px;
	margin-bottom: 16px;
}

.links .link img {
	width: 100%;
}

.connect {
	width: 80%;
	position: absolute;
	bottom: -100px;
	left: 50%;
	transform: translateX(-50%);
	height: 60px;
}

.newsletter {
	width: calc(50% - 5px);
	float: left;
}

.newsletter.signup-discord { float: right; }

.newsletter a {
	width: 100%;
	margin-right: 8px;
	z-index: 10;
	position: relative;
	background: #ecc547;
	border-radius: 4px;
	padding: 4px;
	white-space: nowrap;
	box-sizing: border-box;
	float: left;
	text-align: center;;
}

.newsletter img {
	height: 60px;
	margin-right: 8px;
	vertical-align: middle;
	display: inline-block;
}

.newsletter span {
	position: relative;
	display: inline-block;

	font-weight: bold;
	font-size: 1.2em;
	text-decoration: none;

	height: 60px;
	line-height: 60px;
	vertical-align: middle;

	transition: color 0.1s;
	color: #344599;
}

.newsletter a:hover {
	background: #344599;
}
.newsletter a:hover span {
	color: #ecc547;
}

@media(max-width: 700px)
{
	.titlecard .description {
		font-size: 3.5vw;
	}

	.titlecard .buttons {
		height: 8vw;
	}

	.titlecard .button { 
		margin-right: 5vw;
		padding: 0 2.13vw 0 2.13vw;
	}

	.titlecard .button img {
		margin-right: 1.05vw;
	}

	.titlecard .button .label {
		font-size: 3.5vw;
		line-height: 8vw;
		height: 8vw;
	}

	.copyright {
		left: 32px;
		text-align: center;
	}

	.newsletter { 
		width: 100%;
		margin-bottom: 10px;
	}
	.newsletter a {
		padding-left: 4.5vw;
		padding-right: 4.5vw;
	}
	.newsletter a img {
		margin-right: 2.25vw;
	}
	.newsletter a span { 
		font-size: 3.5vw; 
		height: 8vw;
		line-height: 8vw;
	}

}