:root { --global-color-1: blueviolet}
:root { --accent: rgb(100%,100%,50%)}
/* the reset selector*/
* {
	margin:0;
	padding:0;
}

html{
	background: black url(images/background.jpg) repeat;
}

/* the styles for the elements */
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
	color: white;
	background: #FFFFFF40;
	background-repeat: repeat;
	width: 50%;
	margin-top: 0%;
	margin-bottom: 0%;
	margin-right: auto;
	margin-left: auto;
	border: 5px solid var(--accent);
	border-radius: 0px 30px 0px 30px;
}

/* the styles for the header */
header{
	background: #FFFFFF80;
	padding-top: 1.5em;
	padding-bottom: 2em;
	border-bottom: solid 3px var(--accent);
	border-radius: 0px 25px 0px 0px;
}
header img {
	float: left;
	padding-left: 30px;
	padding-right: 30px;
}
header h2 {
	font-size: 170%;
	color: #0958BE;
}
header h3 {
	font-size: 130%;
	color: black;
	font-style: italic;
}
header em1 {
	text-shadow: 2px 2px 2px red;
}

/* the styles for the main content */
main {
	clear: left;
	padding: 0px 30px;
	margin-bottom: 1%;
}
main h1 {
	font-size: 150%;
	/*border-top: dotted 3px var(--accent);
	border-bottom: dotted 3px var(--accent);*/
	border: solid 3px var(--accent);
	border-radius: 0px 25px 0px 25px;
	box-shadow: 10px 10px 20px black;
	padding: 1% 1%;
}
main h2 {
	color: var(--global-color-1);
	font-size: 130%;
	padding: .5em 0 .25em 0;
}
main h3 {
	font-size: 105%;
	padding-bottom: .25em;
	padding-top: 1%;
}
main q {
	font-family: 'Times New Roman', Times, serif;
	font-weight: bold;
	font-style: italic;
	font-size: 125%;
	padding: 20px;
}
main ul {
	padding: 0 0 .25em 1.25em;
}
main li {
	padding-bottom: .35em;
}

/* 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 footer */
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;
}