h1, h2, h3 {
	padding: 1rem 0;
}

.fa-trophy {
	color: gold;
}

.fa-medal {
	color: silver;
}

.fa-award {
	color: #cd7f32;
}

.fa-discord {
	color: #ffffff;
}

.trophy {
	color: gold;
}

.medal {
	color: silver;
}

.award {
	color: #cd7f32;
}

a.discord:hover {
	border-color: #7289da !important;
}

.sneakers a {
	color: #DD0000;
}

.sneakerless a {
	color: mediumblue;
}

.title {
	background: url("https://drazil100.bitbucket.io/srb2karticons/Maps/title.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	filter: blur(0.2rem);
	z-index: -1;
}

.mapbg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	filter: blur(0.2rem);
	z-index: -1;
}

.map-header {
	margin-top: 0.5rem;
	background: #f4f4f4;
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
	opacity: 0.9;
	border-radius: 5px;
	align-self: center;
	width: 100%;
}

.grid-replay {
	padding: 0.5rem;
	display: grid;
	align-items: stretch;
	justify-content: center;
	grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
	width: 100%;
}

.grid-replay a {
	padding: 0;
}

.item-title, .item-title-sneakers, .item-title-sneakerless, .item-top, .item-place, .item-char, .item-map {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.5rem;
	background: rgba(244, 244, 244, 0.8);
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
}

.item-title {
	padding: 1rem;
	grid-column: span 5;
	text-decoration: underline 1px #000;
	font-size: 2rem;
	border-radius: 5px;
}
.item-title-sneakers {
	padding: 1rem;
	text-transform: uppercase;
	font-size: 1.75rem;
	color: #fff;
	background: #c51d1d;
	grid-column: span 5;
	border-radius: 5px;
}
.item-title-sneakerless {
	padding: 1rem;
	text-transform: uppercase;
	font-size: 1.75rem;
	color: #fff;
	background: #4682b4;
	grid-column: span 5;
	border-radius: 5px;
}

.item-top {
	padding: 0.25rem;
	background: #4f4f4f;
	color: #fff;
}

.item-place p {
	padding: 2rem 0;
}

.item-char img {
	margin: 0.29rem 0;
	width: 70px;
	opacity: 1;
}
.item-map a {
	padding: 0;
}
.item-map img {
	width: 100px;
	opacity: 1;
}

/*
This is designed to be for the level select grid featured in 'index.html' & 'maps.html'
 */
	.maps {
		display: grid;
		align-items: stretch;
		justify-content: space-between;
		grid-template-columns: repeat(5, 1fr);
		width: 75%;
	}
	.maps .header {
		grid-column: span 5;
		padding: .5rem 2rem;
		margin-top: 1rem;
		font-size: 2rem;
		font-weight: bold;
		text-transform: uppercase;
		background: #4f4f4f;
		color: #fff;
		border-radius: 5px;
	}
	.maps a {
		display: inline-block;
		padding: .5rem;
		margin: 0;
		color: #fff;
		text-align: center;
	}
	.maps a img {
		filter: grayscale(1);
		width: 100%;
		height: 100%;
		color: #fff;
	}
	.maps a img:hover {
		animation: animate1 0.5s forwards ease-in-out;
	}

	@keyframes animate1 {
		from {
			filter: grayscale(1);
		}
		to {
			filter: grayscale(0);
		}
	}

	.maps.index {
		grid-template-columns: repeat(3, 1fr);
		width: 50%;
	}
	.maps.index .header {
		text-align: center;
		grid-column: span 3;
	}

	.grid-replay.index {
		align-items: stretch;
		justify-content: center;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		width: 40%;
	}
	.grid-replay.index .item-title-sneakers {
		grid-column: span 4;
	}
	.grid-replay.index .item-title-sneakerless {
		grid-column: span 4;
	}

* {
	margin: 0;
	padding: 0;
}

body {
	font-family: Helvetica, sans-serif;
	background: #000;
}

.parent {
	background: rgba(0, 0, 0, 0.25);
	min-height: 100vh;
}

a {
	text-decoration: none;
	display: inline-block;
	padding: 2rem;
}

li {
	list-style: none;
}

.container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: row;
	margin: .5rem;
}
.container.index {
	flex-direction: column;
	align-items: center;
}

#main-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	margin-bottom: 1rem;
	background: #20145a;
	opacity: 0.9;
}
#main-nav ul {
	display: flex;
}
#main-nav li {
	padding: 1rem;
}
#main-nav p {
	margin-bottom: 0.25rem;
	font-size: 1.3rem;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
}
#main-nav a {
	display: inline-block;
	text-decoration: none;
	font-weight: bold;
	padding: 0.25rem;
	font-size: 1.3rem;
	color: #fff;
	text-transform: uppercase;
	border-bottom: 3px transparent solid;
}
#main-nav a:hover {
	border-color: gold;
}
#main-nav a.current {
	border-color: gold;
}

.index-header {
	text-align: center;
	margin: 1rem 0;
	padding: 0.5rem 1rem;
	background: #f4f4f4;
	width: 70%;
	color: #333;
	opacity: 0.9;
	border-radius: 5px;
}
.index-header a {
	display: inline-block;
	padding: 0;
	margin: 0;
	color: #7289da;
}

@media (max-width: 1366px) {
	.maps {
		grid-template-columns: repeat(5, 0.5fr);
		max-width: 100%;
	}
	.maps a img {
		margin: 0.5rem;
		filter: grayscale(0);
	}
	.maps .header {
		grid-column: span 5;
		padding: 0.5rem 3rem;
		margin: 1rem 0;
	}
	.grid-replay.index {
		width: 80%;
	}
	.maps.index {
		width: 80%;
	}
}

@media (max-width: 1080px) {
	.maps {
		grid-template-columns: repeat(3, 0.5fr);
		max-width: 100%;
	}
	.maps a img {
		margin: 0.5rem;
		filter: grayscale(0);
	}
	.maps .header {
		grid-column: span 3;
		padding: 0.5rem 3rem;
		margin: 1rem 0;
	}
	.container {
		flex-direction: column;
		align-items: center;
	}
	.map-header {
		width: 95%;
	}
	.grid-replay {
		display: grid;
		align-items: stretch;
		justify-content: center;
		grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
		width: 95%;
	}
	.grid-replay.index {
		width: 80%;
	}
	.maps.index {
		width: 80%;
	}
}
/*
@media (max-width: 768px) {
	#main-nav {
		flex-direction: column;
	}
	#main-nav li {
		padding: 0.5rem;
	}
	.maps {
		grid-template-columns: repeat(2, 1fr);
		width: 95%;
	}
	.maps a img {
		margin: 0;
		filter: grayscale(0);
	}
	.maps .header {
		text-align: center;
		grid-column: span 2;
		padding: 0.5rem 3rem;
		margin: 1rem 0.5rem;
	}
	.map-header {
		width: 95%;
	}
	.grid-replay {
		display: grid;
		align-items: stretch;
		justify-content: center;
		grid-template-columns: repeat(2, 1fr);
		width: 95%;
	}
	.item-title, .item-title-sneakers, .item-title-sneakerless, .item-top, .item-place, .item-char, .item-map {
		margin: 0;
		font-size: 1rem;
		text-align: center;
	}
	.item-title {
		grid-column: span 2;
		text-decoration: underline 1px #333;
		font-size: 1.75rem;
	}
	.item-title-sneakers {
		font-size: 1.5rem;
		margin: 0.5rem 0;
		grid-column: span 2;
	}
	.item-title-sneakerless {
		margin: 0.5rem 0;
		font-size: 1.5rem;
		grid-column: span 2;
	}
	.item-top {
		padding: 0.25rem;
	}
	.item-top.download {
		grid-column: span 2;
	}
	.item-place p {
		padding: 2rem 0;
	}
	.item-place.top {
		margin-top: 0.5rem;
	}
	.item-place.download {
		grid-column: span 2;
	}
	.item-map {
		align-self: stretch;
	}
	.item-map a {
		padding: 0;
		margin: 0;
	}
	.item-map.top {
		margin-top: 0.5rem;
	}
	.item-map img {
		width: 100px;
		opacity: 1;
	}
	.maps.index {
		grid-template-columns: repeat(2, 1fr);
		width: 95%;
	}
	.maps.index .header {
		text-align: center;
		grid-column: span 2;
		font-size: 1.75rem;
	}
	.grid-replay.index {
		grid-template-columns: repeat(2, 1fr);
		width: 95%;
	}
	.grid-replay.index .item-title-sneakers {
		grid-column: span 2;
	}
	.grid-replay.index .item-title-sneakerless {
		grid-column: span 2;
	}
	.index-header {
		width: 90%;
	}
}
*/
