@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=MonteCarlo&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Pacifico&display=swap');
body{
	font-size: "Newsreader", serif;
	margin: 0; auto
}
body{
	background-color:  #e6f2ff;
}

/* Website Links except the nav */
a:link{
	color: #b300b3;
}
a:visited{
	color: #b300b3;
}
a:hover{
	color: blue;
}
a:active{
	color: black;
}

header{
	text-align: center;
	margin-bottom: 0;
}
h1{ 
	font-family: "DM Serif Text", serif;
}
h2{
	font-family:"Newsreader" sans-serif;
}
p{ 
	font-family: "Newsreader", serif;
}

/* Navigation*/
nav{
	background-color: pink;
	padding: 5px;
	font-family: "Newsreader";
	margin-left: 11%;
	margin-right: 11%;
}
nav ul{
	list-style-type: none;
	text-align: center;
	margin: 8px 0;
	padding: 0;
}
nav li{
	display: inline;
	padding: 15px;
}
nav a{
	text-decoration: none;
}
nav a:link{
	color:black;	
}
nav a:visited{
	color:black;
}
nav a:hover{
	color:white;
}
nav a:active{
	color:orange;
}

/* Main Section */
main{
	max-width: 1200px;
	padding: 10px;
	margin: 0 10% 0 10%;
}
main img{
	border-radius: 15px;
}
h3{
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}
.home-hero{
	background-image: url(images/header.jpg);
	border-radius: 15px;
	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: 0 auto;
}
main p{
	text-align: center;
}

/* fa Style */
.fa{
	font-size: 2em;
	color: pink;
}

/* Footer */
footer{
	border-top: pink 3px solid;
	max-width: 1200px;
	padding: 10px;
	margin: 0 auto;
}
footer p{
	color: black;
}
footer a{
	text-decoration: none;
}
footer a:link{
	color:black;	
}
footer a:visited{
	color:black;
}
footer a:hover{
	color:pink;
}
footer a:active{
	color:purple;
}
footer small{
	color: black;
}	
footer{
	max-width: 1200px;
	text-align: center;
}


/* Media queries for mobile */
@media only screen and (max-width:768px){
    .hero-image{
        display:none;
    }
}

/*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;
	}
}

