:root {
  --paper: #fbf7ec;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	overflow: hidden;
	font-family: Arial, sans-serif;
	min-height: 100vh;
	width: 100%;
	background-image: url('./images/blur-ironforge.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}

img {
	max-width: 100%;
}

a:link,
a:visited,
a:hover, 
a:active {
	color: black;
	font-weight: bold;
}

.container {
	max-width: 800px;
	margin: 0 auto;
}

.title {
	font-family: 'Bilbo', sans-serif;
	font-size: 6rem;
	text-align: center;
	color: white;
	text-shadow: 2px 2px #000;
}

.sub-title {
	font-size: 1.5rem;
	text-align: center;
	color: white;
	text-shadow: 1px 1px #000;
}

.players {
	display: flex;
	flex-direction: row;
	justify-content: space-between;

}

.player {
	width: 45%;

	margin: 0 2.5%;
	background-position: center center;
	background-color: var(--paper);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
}

.player h2 {
	font-family: 'Bilbo', cursive;
	font-size: 3rem;
	text-align: center;
}

.player p {
	padding: 1rem;
	text-align: center;
}

.player picture {
	display: block;
	background-image: url('https://render-eu.worldofwarcraft.com/profile-backgrounds/v2/armory_bg_covenant_kyrian.jpg');
	background-position: center 90%;
	background-size: 245%;
	height: 400px;
	background-repeat: no-repeat;
	margin: 10px;
}

.player:before, .player:after
{
	position: absolute;
	width: 40%;
	height: 10px;
	content: ' ';
	left: 12px;
	bottom: 12px;
	background: transparent;
	transform: skew(-5deg) rotate(-5deg);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
	z-index: -1;
} 

.player:after
{
	left: auto;
	right: 12px;
	transform: skew(5deg) rotate(5deg);
}

.player picture img {
	margin-top: 80px;
