/* NOTE: Colors
Deep Koamaru #29335C
Flame #E4572E
Dark Tangerine #F3A712
Laurel Green #A8C686
Cerulean Frost #669BBC
Phthalo Green #0F3018
Cyan Cornflower Blue #1780C1 */


html {
	background: url(background.jpeg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	box-sizing: border-box;
  }

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
}

.fixed + .wrapper {
  padding-top: 155px;
}

nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

nav ul {
	list-style-type: none;
	display: flex;
	justify-content: space-between;
	width: 36%;
}

nav ul a {
 font-weight: bold;
 color: midnightblue;
 text-decoration: none;
 /* The value text-decoration: none; is often used to remove underlines from links: */
 font-size: 1.15em;
 margin-right: 15px;
}

nav ul a:hover {
color: #1780C1;
}

.hOne {
	color: purple;
	font-family: 'Montserrat', sans-serif;
	margin-top: 230px;
	font-size: 1.25em;
}

h2 {
	color: purple;
	text-decoration: underline;

}

/* NOTE:  Set up grid for content area */

.wrapper {
	display: grid;
	margin-top: 90px;
	grid-gap: 0px;
	grid-template-columns: 0.75fr 3fr 1.5fr;
	grid-template-areas:
        "aside main . "
        "footer footer footer";
}

.main {
	grid-area: main;
	padding: 5px;
	margin-left: 250px;
	/* margin-right: 90px; */
	font-family: 'Merriweather', serif;
	color: black;
	font-weight: bold;
}

.aside {
	grid-area: aside;
	margin-top: 80px;
}

blockquote {
	padding: 0;
	margin: 0;
	position: fixed;
	width: 185px;
	text-align: right;
	font-family: 'Merriweather', serif;
	font-size: 1.2em;
	font-weight: bolder;
	font-style: italic;
	color: #00C2FB;
	text-align: right;
}

.quoteFooter {
	text-align: right;
	font-size: 0.75em;
	color: #F3A712;
}

footer {
	grid-area: footer;
	padding: 0px;
	text-align: center;
	font-size: 1em;
	color: #00C2FB;
}

.latest {
	font-size: 40px;
	text-decoration: overline underline;
	margin-bottom: 25px;
}

.center {
	text-align: center;
}

.onePost {
	color: white;
}

/* NOTE: RESPONSIVE SECTION */

 @media screen and (max-width: 1500px) {
	.responsiveMenu {
		width: 60%;
	}
}

/* Large Desktop  */
@media screen and (max-width: 1055px) {
	.responsiveMenu {
		width: 80%;
	}
}
