/* color palette as follows
think VAPORWAVE

#ff71ce = light pink
#01cdfe = light blue
#05ffa1 = light green
#b967ff = light purple
#fffb96 = light yellow

end color pallete */

/* set to 0 for simplicity */
* {
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    width: 800px;
    margin: 0 auto;
    border: 3px solid #ff71ce;
}
a:focus, a:hover {
	font-style: italic;
	color: #01cdfe;
}
/* the styles for the header */
/* ADDED CUSTOM IMAGES & TEXT AND ALIGNED ACCORDINGLY */
header #vaporwave {
  padding-top:1em;
  margin:0;
}

header {
	padding: 1.5em 0 6em 0;
	border-bottom: 4px solid #b967ff ;
  background-color: teal;
}
header h2 {
	font-size: 175%;
	color: #01cdfe;
}
header h3 {
	font-size: 130%;
	font-style: italic;
  color: #fffb96;
}
header img {
	float: left;
	padding: 0 40px;
}

.shadow {
	text-shadow: 2px 2px 2px #b967ff;
}
/* the styles for the section */
/* ADJUSTED TEXT ALIGNMENT AND COLORs */
section {
	width: 583px;
	height: 710px;
	float: right;
  background-color: teal;
}
section h1 {
	font-size: 150%;
	padding: .5em 0 .25em 2em;
	margin: 0;
	color: #01cdfe;
}
section h2 {
	color: #05ffa1;
	font-size: 130%;
	padding: 1em 0 1em 1em;
}
section h3 {
	padding-left: 2em;
}
section p {
	padding-bottom: .5em;
	padding-left: 1em;
}
section blockquote {
	padding: 1em 2em;
	font-style: italic;
}
section ul {
	padding: 0em 0 .25em 2em;
}
section li {
	height: 2em;
}


/* the styles for the article */
article {
	padding: .5em 0;
	border-top: 2px solid #fffb96;
	border-bottom: 2px solid #fffb96;
}
article h2 {
	padding-top: 0;
}
article h3 {
	font-size: 105%;
	padding-bottom: .25em;
}
article img {
	float: right;
	margin: 0em 0 1em 1em;
	padding: 0em 1.5em 0em 0em;
}

/* the styles for the aside */
/* MODIFIED ASIDE TO ALIGN IN CENTER*/

aside {
	width: 215px;
	height: 100%;
	float: center;
  background-color: teal;
	border-right: 2px solid #b967ff;
}
aside h2 {
	color: #05ffa1;
	font-size: 130%;
	padding: .5em 0 .25em 0;
	text-align: center;
}
aside h3 {
	font-size: 105%;
	padding-bottom: .25em;
	text-align: center;
}
aside img {
	padding-bottom: 1em;
	padding-left: 1.5em;
}

/* the styles for the footer */
footer {
	background-color: #b967ff;
	clear: both;
	padding-top: 1em;
}
footer p {
	text-align: center;
	color: #fffb96;
	padding: 1em 0;
}
