body
{
	background-image: url('../Images/PurpleGraveyardBackground.jpg');
	color: white;
	font-family: georgian;
	font-size: 15px;
	font-family: lucida console;
}

button
{
	width: 100%;
}

.flex-row
{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}

audio 
{
	width: 100%
}

.scroll
{
	margin: 15px; 
	padding: 15px;
	overflow-y: scroll;
	overflow-x: none;
}

.x-scroll
{
	margin: 15px; 
	padding: 15px;
	overflow-y: none;
	overflow-x: scroll;
}

.flex-container
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.fa-ul
{
	margin: 0px;
}

.inner-container
{
	border: 5px inset #121212; 
	background-color: #121212;
	margin: 5px;
	padding: 5px;
}

.outer-container
{
	border: 5px outset #2e2c30;
	background-color: #2e2c30;
	box-shadow: 0px 0px 5px 5px rgba(169, 152, 181, 0.5);
	margin: 10px;
	padding: 10px;
}

h1
{
	font-size: 25px;
	margin: 10px;
	padding: 10px;
	background-color: #1c0930;
	border: inset #1c0930;
	font-family: "Courier New", Courier, monospace;
	font-weight: 200;
	text-align: center;
}

button
{
	background-color: #121212;
	border: 5px outset #121212;
	color: white;
	margin-top: 5px;
	margin-bottom: 5px;
	font-family: lucida console;
}

button:hover
{
	background-color: #9b33d4;
	border: 5px outset #9b33d4;
	box-shadow: 0px 0px 5px 5px rgba(242, 212, 63, 0.7);
	text-shadow: 0px 0px 5px rgba(242, 212, 63, 0.7);
}

textarea
{
	background-color: #121212;
	border-color: #121212;
	color: white;
}

@keyframes fade-in {
	0%
	{
		opacity: 0;
	}
	
	100%
	{
		opacity: 1;
	}
}

.fade-in-animation
{
	opacity: 1;
	animation-name: fade-in;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 1s;
}