@import url('https://fonts.googleapis.com/css2?family=Ga+Maamli&family=Oswald:wght@200..700&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mystery+Quest&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&display=swap');
body{
	font-family: "Oswald", sans-serif;
	margin: 0;
	background-color: purple;
}

/* Website Links except the nav */

a:link{
	font-size: 30px;
	color: white;
}
a:visited{
	font-size: 30px;
	color: red;
}
a:hover{
	font-size: 30px;
	color: yellow;
}
a:active{font-size: 30px;
	color: orange;
}

/* Navigation */
nav{
	background-color: #3399ff;
	border-top: 10px solid black;
	border-bottom: 10px solid black;
	padding: 5px;
}
header{
	text-align: center;
}
h1{
	color: red;
	font-family: "Mystery QUest", sans-serif;
}
h2{
	color: black;
	font-family: DynaPuff, sans-serif;
}
nav ul{
	list-style-type: none;
	text-align: center;
	margin: 8px 0;
	padding: 0;
}
nav li{
	display: inline;
	padding: 5px;
}
nav a{
	text-decoration: none;
}
nav a:link;{
	font-size: 30px;
	color: white;
}
nav a:visited{
	font-size: 30px;
	color: red;
}
nav a:hover{
	font-size: 30px;
	color: yellow;
}
nav a:active{
	font-size: 30px;
	color: orange;
}
/* Main */
main{
	max-width: 1200px;
	margin: 20px auto;
	padding: 10px;
}
.home-hero{
	border-left: 10px solid red;
	background-image: url(images/header.jpg);
	height: 475px;
	background-size: cover;
	background-position: center;
	color: #042837;
	padding: 10px 10px 10px 30px;
}
blockquote{
	background-color: #eeeeee;
	border-left: 10px solid gray;
	padding: 30px;
}
img{
	display: block;
	margin: auto;
	border-bottom: 10px solid pink;
}
/* Footer */
footer{
	background-color: #ff9933;
	border-top: 10px solid black;
	border-bottom: 10px solid black;
	text-align: center;
	padding: 5px;
	font-size: 100px;
}
P{
	font-size: 10px;
}
/*CSS without a media query--applies to all sizes unless overridden*/
h1{
	font-size: 4em;
}

/* CSS Adjustments for Tablets */
@media only screen and (max-width: 1024px) {
	h1{
		font-size: 2em;
	}
}
/* CSS Adjustments for Smartphones */
@media only screen and (max-width: 768px) {
	h1{
		font-size: 1.5em;
	}
}