@charset "UTF-8";
body {
	/**
	   *Image obtained from gettyimages.com
	   */
	background-image: url("../images/cartographer.png");
	background-color: #94cc68;
	color: #002500;
	font-size: 1em;
}
footer {
	border: 3px solid #221811;
	background-color: #487722;
	font-size: 1.4em;
	font-weight: 900;
	text-align: center;
	font-style: italic;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
header {
	background-color: #0e832c;
	/**
	   *Image obtained from gettyimages.com
	   */
	background-image: url("../images/DinosaurLogo.png");
	height: 150px;
	background-repeat: no-repeat;
	text-align: center;
	border: 3px solid #663300;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
h1 {
	padding-top: 10px;
	padding-left: 220px;
	font-size: 3em;
	animation-name: header;
	animation-duration: 10s;
	animation-iteration-count: infinite;
}
main {
	padding-left: 0em;
	padding-right: 0em;
	padding-top: 0em;
	padding-bottom: 1em;
	margin-left: 200px;
	background-color: #61f144;
	/**
	   *Image obtained from gettyimages.com
	   */
	background-image: url("../images/cartographer.png");
	text-align: center;
}
nav {
	float: left;
	width: 200px;
	font-size: 1.5em;
	text-align: center;
	font-weight: bold;
	padding-top: 10px;
	border-radius: 10px;
}
nav a {
	text-decoration: none;
}
nav a:link {
	color: #a8d29a;
}
nav a:visited {
	color: #a97d5d;
}
nav a:hover {
	color: #5d493a;
}
nav ul {
	list-style-type: none;
	padding-left: 0em;
}
#begin,
#initialize_game {
	border-bottom: 3px groove #cccccc;
	padding-bottom: 10px;
}
#begin {
	font-size: 1.5em;
}
#count {
	/*border: 1px solid red;*/
}
#game_status {
	padding-left: 40px;
}
#play_game p:first-child {
	font-size: 1.5em;
}
#wrapper {
	background-color: #09551d;
	/**
	*Image obtained from gettyimages.com
	*/
	background-image: url("../images/cartographer.png");
	min-width: 1000px;
	max-width: 1280px;
	box-shadow: 0px 0px 20px 10px rgba(14, 70, 1, 1);
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	border-radius: 20px;
	padding: 0px 0px 0px 0px;
}
#dinoCoin {
	/**
	*Image obtained from gettyimages.com and modified by Tristen Rivera
	*/
	background-image: url("../images/DinoCoins.jpg");
	background-repeat: no-repeat;
	background-size: 100%;
	height: 325px;
	border-radius: 0px 0px 15px 15px;
}
.game_error {
	color: #9c0606;
	font-size: 120%;
	text-shadow: 0px 0px 10px #616161;
}
@keyframes header {
	0% {
		color: #773300;
	}
	50% {
		color: #000000;
	}
	100% {
		color: #773300;
	}
}

@media only screen and (max-width: 1024px) {
	body {
		margin: 0;
	}
	h1 {
		margin-top: 0;
		margin-bottom: 1em;
		padding-top: 1.2em;
		padding-bottom: 1em;
		font-size: 2.5em;
	}
	nav {
		float: none;
		width: auto;
		padding-top: 0;
		margin: 10px;
		font-size: 1.3em;
		border-radius: 10px;
	}
	nav li {
		display: inline-block;
	}
	nav a {
		padding: 1em;
		width: 8em;
		font-weight: bold;
		border-style: none;
	}
	nav ul {
		padding: 0;
		margin: 0;
	}
	main {
		margin-left: 0px;
	}
	#dinoCoin {
		height: 32vw;
	}
	#wrapper {
		width: auto;
		min-width: 705px;
		margin: 0;
		padding: 0;
		box-shadow: none;
	}
}
