:root { --accent: rgb(100%,100%,50%)}

/* the styles for the elements */
* {
	margin: 0;
	padding: 0;
}
html {
	background: black url(images/background.jpg) repeat;
}
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    color:white;
    width: 800px;
    margin: 0 auto;
    border: 5px solid var(--accent);
    background-color: #FFFFFF40;
    border-radius: 0px 30px 0px 30px;
}
/* the styles for links */
a:link {color:blue}
a:visited {color:darkred}
a:hover, a:focus {font-style:italic;color:green}
/* the styles for the header */
header {
	padding: 1.5em 0 2em 0;
	border-bottom: 3px solid var(--accent);
	background: #FFFFFF80;
    border-radius: 0px 25px 0px 0px;
}
header h2 {
	font-size: 175%;
	color: #0958BE;
}
header h3 {
	font-size: 130%;
	font-style: italic;
    color: black;
}
header img {
	float: left;
	padding: 0 30px;
}
.shadow {
	text-shadow: 2px 2px 2px red;
}
/* the styles for the section */
section {
	width: 525px;
	float: right;
	padding: 0 20px 20px 20px;
}
section h1 {
	font-size: 150%;
	padding: .5em 0 .25em 0;
	margin: 0;
    color:blueviolet;
}
section h2 {
	color: var(--accent);
	font-size: 110%;
	padding: .5em 0 .25em 0;
}
section p {
	padding-bottom: .5em;
}
section blockquote {
	padding: 0 2em;
	font-style: italic;
}
section ul {
	padding: 0 0 .25em 1.25em;
}
section li {
	padding-bottom: .35em;
}

/* the styles for the article */
article {
	padding: .5em 0;
}
article h2 {
	padding-top: 0;
}
article h3 {
	font-size: 105%;
	padding-bottom: .25em;
}
article img {
	float: right;
	margin: .5em 0 1em 1em;
	border: 1px solid black;
}

/* the styles for the aside */
aside {
	width: 215px;
	float: right;
	padding: 0 0 20px 20px;
}
aside h2 {
	color: #FFFFFF80;
	font-size: 130%;
	padding: .5em 0 .25em 0;
}
aside h3 {
	font-size: 105%;
	padding-bottom: .25em;
}
aside img {
	padding-bottom: 1em;
}

/* the styles for the footer */
footer {
	clear: both;

}
footer p{
	text-align: center;
	font-size: 80%;
	color: black;
	border-top: solid 5px var(--accent);
	background-color: var(--accent);
	border-radius: 0px 0px 0px 20px;
}
