
/* 
Background Sky Stuff
*/

.background_sky {
	position: absolute;
	display: block;
	background-image: linear-gradient(#7daaff, #b8d3ff);
	background-size: 576px;
	background-attachment: local; 
	top: 0px;
	width: 100%;
	height: 576px;
	z-index: -999;
}
.background_grass {
	position: absolute;
	display: block;
	background: url("../pages/about-me/lantalia/grass.png");
	background-size: 96px;
	background-attachment: local;
	top: 576px;
	width: 100%;
	height: 96px;
	z-index: -999;

}
.background_dirt {
	position: absolute;
	display: block;
	background: url("../pages/about-me/lantalia/dirt.png");
	background-size: 96px;
	background-attachment: scroll;
	width: 100%;
	top: 672px;
	z-index: -999;

}


/* making the main page container */
.page_layout { 
	max-width: 1100px;
	height: fit-content;
	
	display: block;
	line-height: 1.4;
	text-align: justify;
	margin: auto;
	
	font-size: 25px;
	color: #444;
	
	background-color: #c6c6c6;
	
	border-style: solid;
	border-color: white #555 #555 white;
	border-radius: 4px;
	
	outline: 4px solid black;

}

.page_layout p {
	margin-top: 0;
	background-color: black;
	padding: 20px;
	color: #eee;
	
	border-style: solid;
	border-color: #555 white white #555;
}

/* this is actually the container for the links rather than the styling for any in particular, though some will still work */
.link_row {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 600px;
	margin: auto;
	margin-top: 25px;
	color: #eee;
}

.link_row li {
	display: flex;
	flex-direction: rows;
}

/* styling for the inner content */
.link_row li a {
	padding: 10px;
	margin: 10px;
	width: 100%;
	max-height: 30px;
	top: 0px;
	
	background: url("../pages/about-me/lantalia/button.png");
	
	text-align: center;
	font-size: 25px;
	text-decoration: none;
	
	justify-items: center;
	
	border-style: solid;
	border-color: #aaa #555 #555 #aaa;
	border-radius: 4px;
	outline: 4px solid black;
	text-shadow: 3px 3px #333;
}

/* when a link is hovered */
.link_row a:hover {
	border-style: solid;
	border-color: #aaa #555 #555 #aaa;
	border-radius: 4px;
	outline: 4px solid white;
	color: white;
}

/* the return home button */
.return_home {
	margin-top: 15px;
}

.main_content {
	padding-left: 20px;
	padding-right: 20px;
}

.main_content p a {
	padding: 0;
	text-decoration: underline;
}

.gallery {
	display: flex;
	flex-direction: row;
}

.txt_center {
	text-align: center;
}

.screenshot {
	width: 48%;
	margin: 1% auto;
}

.screenshot img {
	border-style: solid;
	border-color: #555 white white #555;
	width: 98.8%;
}

.profile {
	margin: 1% auto;
	image-rendering: auto;
}

.cast {
	border-style: solid;
	border-color: #555 white white #555;
	width: 98.8%;
	margin: 1% auto;
	image-rendering: auto;
}

.cast img {
	width: 100%;
	transition: .4s 100ms ease-in-out;
}

.cast img:hover {
    transform:scale(1.75); 
	filter: drop-shadow(10px 10px 10px  rgba(0, 0, 0, 0.7) );
}

.profile img {
	margin: auto;
	height: 500px;
}

.big_link {
	display: block;
	text-align: center;
	width: fit-content;
	margin: auto;
	font-size: 36px;
}

.logo {
	display: block;
	margin: auto;
}

/* 
Character Text Colour
*/

.dialog {
	font-family: Courier;
	font-weight: bold;
	font-size: 20px;
}

.lizbet {
	color: red;
}

.lizbet:before {
	content: "LIZBET: "
}

.amelia {
	color: purple;
}

.amelia:before {
	content: "AMELIA: "
}


/* 
Universal Styling
*/

body {
	image-rendering: pixelated;
	color: #333;
	font-family: Minecraft;
	margin: 0;
}

a:visited, a:active, a:link {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: white;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

hr {
	width: 101%;
	left: -0.5%;
	margin: auto;
	margin-bottom: 20px;
	padding: auto;
	top: 1.5px;
	position: relative;
	display: block;
	height: 3px;
	border: 0;
	border-top: 3px solid gray;
}

/* 
Headers
*/

h1 {
	margin: 0;
	font-size: 36px;
	text-align: left;
	padding: 10px;
}

h2 {
	margin: 0;
	font-size: 28px;
	text-align: left;
}
h3 {
	margin: 0;
	font-size: 32px;
	text-align: left;
}	
h4 {
	margin: 0;
	font-size: 18px;
	text-align: left;
}
