body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	background: black;
	font-family: 'Tangerine', cursive;
	font-size: 1.3em;
}
main {
	height: 100%;
	text-align: center;
	color: white;
	position: relative;
}
main > h1 {
	position: absolute;
	font-size: 3rem;
	margin: 0;
	top: 30px;
	left: 30px;
	transition: opacity 5s ease-in-out;
	opacity: 0;
	z-index: 99;
	visibility: hidden;
	text-shadow: 2px 2px black;
}
main > h1.visible {
	opacity: 1;
	visibility: visible;
}

.slide {
	display: none;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	box-shadow: inset 0 0 15vw black;
	filter: sepia(100%) blur(30px);
	font-size: 3rem;
	height: 100%;
	opacity: 0;
	transition: opacity 5s ease-in-out, filter 5s ease-in-out;
}
.slide > blockquote {
	display: block;
	text-shadow: 1px 1px black;
	margin-right: 0;
	margin-bottom: 0;
	position: absolute;
}
.slide > blockquote > div {
	text-align: right;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1rem;
	padding-left: 200px;
}
.slide.show {
	display: block;
}
.slide.visible {
	opacity: 1;
	filter: sepia(70%) blur(0);
}

#start > div {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: black;
}
#start > div > button {
	background: none;
	border: 2px solid white;
	padding: 15px 45px;
	color: white;
	font-size: 2.4rem;
	font-family: 'Tangerine', cursive;
	transition: box-shadow .2s ease-in-out, color .2s ease-in-out;
}
#start > div > button:hover {
	box-shadow: 0 0 1px 1px white;
	color: #333333;
}

#csgo_slide_1 {
	background-image: url('../images/csgo1.jpg');
}
#csgo_slide_1 > blockquote {
	margin-top: 25vh;
	margin-left: 5vw;
}

#csgo_slide_2 {
	background-image: url('../images/csgo2.jpg');
}
#csgo_slide_2 > blockquote {
	margin-top: 25vh;
	margin-left: 35vw;	
}

#csgo_slide_3 {
	background-image: url('../images/csgo3.jpg');
}
#csgo_slide_3 > blockquote {
	margin-top: 35vh;
	margin-left: 50vw;
}

#pubg_slide_1 {
	background-image: url('../images/pubg1.jpg');
}
#pubg_slide_1 > blockquote {
	margin-top: 27vh;
	margin-left: 47vw;
}

#pubg_slide_2 {
	background-image: url('../images/pubg2.jpg');
}
#pubg_slide_2 > blockquote {
	margin-top: 40vh;
	margin-left: 50vw;
}

#pubg_slide_3 {
	background-image: url('../images/pubg3.jpg');
}
#pubg_slide_3 > blockquote {
	margin-top: 15vh;
	margin-left: 52vw;
}

#fin > div {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99;
	color: white;
	font-size: 0.5rem;
	text-shadow: 1px 1px black;
	font-family: 'Roboto Condensed', sans-serif;
	padding: 0 5px;
	opacity: 0.25;
	display: flex;
	justify-content: space-between;
}
footer a {
	color: white;
}
