body {
	color: #FFFFFF;
	font-family: sans-serif;
	margin: 0px;
	
	background-color: #000000;
	background-image: url("chiron_gate_background.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	
	font-size: 1.2em;
}


h1 {
	text-align: center;
	font-family: "Cute Font", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 500%;
	
	line-height: 1;
	
	text-shadow: 	
		0px 0px 20px hsl(220,100%,80%);
	
	margin: 0.25em 0 0 0;
}


.subtitle-links {
	text-align: center;
	font-family: "Cute Font", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 200%;
	
	line-height: 1;
	
	margin-bottom: 1em;
}

.subtitle-links a {
	display: inline-block;
	margin: 0em 0.5em;
	
	text-decoration: none;
	color: #FFFFFF;
	text-shadow: 	
		0px 0px 20px hsl(220,100%,80%);
}

h1 a {
	color: inherit;
	text-decoration: none;
}

.subtitle-links a:hover {
	/* text-decoration: underline; */
	transform: translateY(-2px);
	text-shadow: 	
		5px 0px 20px hsl(220,100%,80%),
		0px 5px 20px hsl(220,100%,80%),
		-5px 0px 20px hsl(220,100%,80%),
		0px -5px 20px hsl(220,100%,80%);
}


/* Main page (games) */
.games-list {
	/* outline: 1px solid cyan; */
	padding: 0em 2em;
	
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.game-entry {
	/* outline: 5px solid red; */
	
	flex-basis: 50em;
	flex-grow: 0;
	flex-shrink: 1;
	
	margin: 0.5em;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 0em;
}

.game-entry-title-container {
	/* outline: 5px solid green; */
	
	flex-basis: 8em;
	
	flex-shrink: 1;
	flex-grow: 0;
	
	text-align: center;

	display: flex;
	justify-content: center;
	flex-direction: column;
}

.game-entry-title-image {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-height: 8em;
}


.game-entry-text {
	flex-shrink: 1;
	flex-grow: 0;
	padding: 0em 0.5em;
	
	/* background: rgba(0, 0, 0, 0.3); */
	
	text-shadow: 0px 0px 10px #000;
}

.game-entry-links {
	/* outline: 5px solid orange; */
	
	flex-shrink: 1;
	flex-grow: 0;
	
	text-align: center;
	
}

.game-entry-links a {
	display: inline-block;
	
	color: hsl(220,100%,95%);
	border: 1px solid hsl(220,100%,95%);
	background: hsl(220,100%,10%);
	margin: 0.25em 0;
	padding: 0.35em 0.5em;
	line-height: 1em;
	border-radius: 0.2em;
	
	font-weight: bold;
	text-decoration: none;
}

.game-entry-links a:hover {
	text-decoration: none;
	color: #fff;
	border-color: hsl(220,100%,95%);
	background: hsl(220,100%,20%);
	box-shadow: 0px 0px 10px hsl(220,100%,80%);
	text-shadow: 0px 0px 10px hsl(220,100%,80%);
	transform: translateY(-2px);
}


/* About page */

.about-text-and-image {
	/* outline: 5px solid red; */
	
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.about-text {
	flex-basis: 25em;
	flex-grow: 0;
	flex-shrink: 1;
	background: rgba(0,0,0,0.6);
	margin: 0em 1em;
	padding: 1em 1.5em;
	border-radius: 1em;
}

.about-image-container {
	flex-basis: 15em;
	flex-grow: 0;
	flex-shrink: 1;
	margin: 0em 1em;
	text-align: center;
}

.about-image-container img {
	width: 100%;
	height: auto;
	border-radius: 1em;
}

/* Contact page */
.contact-text-holder {
	/* outline: 5px solid red; */
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.contact-text {
	flex-basis: 40em;
	flex-grow: 0;
	flex-shrink: 1;
	background: rgba(0,0,0,0.6);
	margin: 0em 1em;
	padding: 1em;
	border-radius: 1em;
}

.contact-text a {
	color: hsl(220,100%,80%);
	text-decoration: none;
}

.contact-text a:hover {
	color: #FFF;
	text-shadow: 	
		0px 0px 20px hsl(220,100%,80%);
}






@media only screen and (max-width: 800px) {
	h1 {
		font-size: 350%;
	}
	.games-list {
		/* outline: 5px solid cyan; */
		flex-direction: column;
	}
	.game-entry {
		flex-basis: 0em;
	}
	.game-entry-title-container {
		flex-basis: 2em;
	}
	.about-text-and-image {
		flex-direction: column-reverse;
	}
	.about-text {
		flex-basis: initial;
		margin-bottom: 1em;
	}
	.about-image-container {
		/* outline: 5px solid red; */
		flex-basis: 10em;
		height: 10em;
		flex-grow: 0;
		flex-shrink: 1;
		margin-bottom: 1em;
	}
	.about-image-container img {
		height: 100%;
		width: auto;
		border-radius: 1em;
	}
}