@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=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
body{
	margin: 0;
	font-family: "Oswald", sans-serif;
	border-top: 10px solid gray;
	border-bottom: 10px solid gray;
}

/* Website Links except the nav */

a:link{
	color: black;
}
a:visited{
	color: #FF0000;
}
a:hover{
	color: #0000FF;
}
a:active{
	color: #FFA500;
}

/* Navigation */
head{

}
nav{
	background-color: #E6E6FA;
	border-top: 3px solid grey;
	border-bottom: 3px solid grey;
}
h2{
	font-family: permanent marker;
}
header{
	text-align: center;
	background-color: white;
}
.home-hero{
	background-image: url(images/space.png);
	background-size: cover;
}
.home-hero h1{
	font-family: 'Permanent Marker', cursive;
	color: white;
	font-size: 60px;
	text-shadow: 2px 2px 2px grey;
	text-align: center;
	padding: 50px 0;
	margin: 0;
}
nav ul{
	list-style-type: none;
	text-align: center;
	margin: 8px 0;
	padding: 0;
	font-family: 'Bebas Neue';
}
nav li{
	display: inline;
	padding: 5px;
}
nav a{
	text-decoration: none;
}
nav a:link;{
	color: black;
}
nav a:visited{
	color: red;
}
nav a:hover{
	color: blue;
}
nav a:active{
	color: orange;
}
/* Main */
.home-photo{
	float: right;
	max-width: 50%;
	height: 300px;
	margin: 10px 0 10px 10px;
}
li{
	text-align: left;
}
h2{
	text-align: center;
	font-size: 30px;
	color: gray;
	border-bottom: 3px solid black;
}
main{
	max-width: 1000px;
	margin: 20px auto;
	padding: 10px;
}
blockquote{
	background-color: #eeeeee;
	border-left: 10px solid #E6E6FA;
	padding: 30px;
	font-family: 'Bebas Neue';
}
/* Footer */
footer{
	background-color: #E6E6FA;
	border-top: gray 3px solid;
	text-align: center;
	padding: 30px;
}
.footer1000{
	max-width: 1000px;
	margin: 0 auto;
}
.footer-bottom{
	background-color: grey;
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}
iframe {
   display: block;
   margin: 0 auto;
}
.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}
.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*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;
	}
}