/* custom property */
:root {
	--global-color-1: black;
	background-color: white;
}
* {
	margin: 0;
	padding: 0;
}

/* the styles for the elements */
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    margin-left: 10px;
	width: 600px;
	margin: 0 auto;
	border: 3px solid black;
	background-color: #fffded;
	text-indent: 1em;
}
a:focus, a:hover {
	font-style: italic;
}
/* the styles for the header */
header {
	padding-top: 1.5em;
	padding-bottom: 2.0em;
	border-bottom: .5em solid rgb(102, 147, 230);
	background-image: linear-gradient(
		30deg, rgb(124, 215, 200) 0%, rgb(164, 245, 230) 30%, white 50%, #a1d2f1 80%,  #ebbaf8 100%);
}
header h2 {
	font-size: 150%;
	color: rgb(20, 111, 4);
	
}
header h3 {
	font-size: 130%;
	font-style: italic;
	
}
header img {
	float: left;
	padding: 0 30px;
}

.shadow {
	text-shadow: .1em .1em .1em #f1f157;
}
/* the styles for the main content */
main {
	clear: left;
	padding: 0 30px;
}
main h1 {
	font-size: 150%;
	padding: .5em auto;
	border: 0.25em double #931420;
	border-radius: .4em;
	box-shadow: .2em .2em 0 0 black;
	text-align: center;
	margin: 0.5em 0;
}
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: 1em;
}
main img {
	padding-bottom: 1em;
}
main p {
	padding-top: .5em;
	padding-bottom: .5em;
}

/* the styles for the footer */
footer p {
	text-align: center;
	padding: 1em 0;
	background-color: #21aab4;
	color: white;
}
