:root {
	--global-color-1: #68cfce;
}

/* adding a background color */
html {
	background: rgba(211, 211, 211, .899);
}
/*this is the style for the body of the webpage*/
body {
	font-family: "Courier New", Helvetica, sans-serif;
    font-size: 100%;
	margin: 10px auto;
	border: 3px solid rgba(106, 180, 214, 0.925);
	width: 700px;
	background-color: azure;
}
/*reseter just for fun*/
*{
	margin: 0;
	padding: 0;
}

.gif{
	height: 100%;
	width: 100%;
	background-image: url(https://c.tenor.com/xnbbSR0XkpoAAAAC/gura-vtuber.gif);
	background-position: 150px;
	background-repeat: no-repeat;
}

header img {
	float: left;
	padding: 25px 30px 0 30px;
/*allowing for some space between the pic and headers*/
}

header h2 {
	font-size: 175%;
	padding-top: 1.5em;
	
}
header h3{
	font-size: 115%;
	font-style: italic;
	border-bottom: 2px dashed rgba(211, 211, 211, .899);
	padding-bottom: 1em;
	padding-right: 2em;
	text-align: right;
	/*making h3 look nice/ testing things out*/
}

.bold {
	font-weight: 900;
}

nav{
	padding: .5em .75em;
}

#nav_list ul { /* The nav menu itself*/
	list-style-type: none;
	display: block;
	background: rgba(233, 114, 35, 0.836);
	background: whitesmoke;
	border: 2.5px double rgba(233, 114, 35, 0.836);
	border-radius: 5px;
	box-shadow: 2px 2px 2px 2px rgba(221, 218, 218, 0.979);
	margin: 10px auto;
	padding: 10px;	
	position: relative; 
	
}
#nav_list ul li { /* The boxes in the nav menu*/
	display: inline-block;
	position: relative;
	margin-left: 5px;
	background: rgba(233, 114, 35, 0.836);
	padding: 10px 16px;
	box-shadow: 0 0 1px black;
	border-radius: 10px;

}

#nav_list ul li {
	margin-left: 0px;
}

#nav_list ul li a { /* The boxes within the boxes of the nav menu*/
	text-decoration: none;
	display: block;
	color: Black;
	position: relative;
	
	
}

#nav_list ul ul { /*The text formating for the drop down menu*/
	display: none;
	position: absolute;
	text-align: center;
	top: 80%;
	
	list-style: none;
	background: rgba(233, 114, 35, 0.836);
	width: 9em;
	padding-bottom: 10px;
	z-index: 9999;

}

#nav_list ul li:hover { /*The rest of the nav settings are for the hover aspect */
	background: rgba(106, 180, 214, 0.925);
}

#nav_list ul li:hover > ul {
	display: block;
	margin-left: -1.1em;
	background: rgba(233, 114, 35, 1);
	background: whitesmoke;
	border-radius: 8px;
	padding: 1.1em .5em;
} 

#nav_list ul li:hover ul li a {
	color: white;
}

#nav_list ul li:hover ul li a:hover {
	color: white;
	
}

main h1 {
	text-align: center;
	text-shadow: 1.5px 1.5px 1.5px black;
	/*making the text easier to see*/
	color: var(--global-color-1);
}

section {
	width: 525px;
	float: right;
	padding: 0 20px 20px 20px;
}
section h2 {
	font-size: 150%;
	padding: .5em 0 .25em 0;
	margin: 0;
	text-shadow: 1.5px 2px 2px rgb(5, 72, 134);
	color: rgb(200, 207, 191);
}

section p {
	padding-bottom: .5em;
	font-weight: bolder;
}
section blockquote {
	padding: 0 2em;
	font-style: italic;
}

article {
	padding: .5em 0;
	border-top: 2px solid rgba(233, 114, 35, 0.836);
	border-bottom: 2px solid rgba(233, 114, 35, 0.836);
}
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;
	max-width: 50%;
	max-height: 50%;
}

aside img {
	padding: 1em;
	max-width: 100px;
}





footer{
	clear: both
}