/* Mobile First View: */

h2 {
	display: none;
}

aside {
	background: #eeefe0;
	font-size: 120%;
	padding: 5px 0;
	text-align: center;
	width: 100%;
}

/* Style the links in the aside section */
aside a {
	color: #819A91;
	display: block;
	padding: 5px 0;
	text-decoration: none;
	width: 100%;
	font-family: 'Trebuchet MS', Helvetica, sans-serif;
}

/* Change the color of aside links on hover using mouse */
aside a:hover {
	background-color: #A7C1A8;
	color: #eeefe0;
}


/* Change the color of aside links on focus using tab key */
aside a:focus {
  background-color: #A7C1A8;
  color: #A7C1A8;
  outline: none;
}


article {
	background-color: #A7C1A8;
	color: #eeefe0;
	font-size: 120%;
	padding: 0 10px;
	font-family: 'Trebuchet MS', Helvetica, sans-serif;
}

article a {
	color: #eeefe0;
	padding: 5px;
	text-decoration: none;
	font-family: 'Trebuchet MS', Helvetica, sans-serif;
}

/* Change the color of article links on hover using mouse */
article a:hover {
  background-color: #E3DFDE;
  color: #4B3C35;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
}


/* Change the color of article links on focus using tab key */
article a:focus {
  background-color: white;
  color: #4B3C35;
  outline: none;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
}

#main_image {
	width: 100%;
}


/* For desktop: */
@media only screen and (min-width: 768px) {

	main {
		display: flex;
	}

	aside {
		align-items: center;
		display: flex;
		flex-direction: column;
		float: left;
		justify-content: center;
		width: 30%;
	}

	section {
		display: inline;
		float: right;
		width: 70%;
	}

}