: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: 70%;
	background-color: azure;
}
/*reseter just for fun*/
*, *:before, *:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* the styles for the header */
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*/
}
/*making sure the events and price name are bold */
.bold {
	font-weight: 900;
}

/* This is where the nav configurations will be*/
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;	
	display: flex;
	flex-basis: 100%;
	justify-content: space-evenly;
}
#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 {
	flex-basis: 20%;
}

#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;
	
}
/* the styles for the section content */
main {
	display: flex;
}

main h1 {
	text-align: center;
}
section{
	flex-basis:70%;
}

section img {
	border: .25em solid black; /*making sure the images are aligned with the names*/
	border-radius: 9px;
	size: 76%;
	margin-left: 5em;
}
section h1 {
	/* gave the header a smokey touch & made it stand out more*/
	font-size: 150%;
	padding: .5em .25em;
	border: 2.5px double rgba(233, 114, 35, 0.836);
	border-radius: 20px 10px 20px 10px;
	box-shadow: 2px 2px 2px 2px rgba(221, 218, 218, 0.979);
	background-color: whitesmoke;
	margin-left: 11em;
}
section h2 {
	text-shadow: 1.5px 1.5px 1.5px black;
	/*making the text easier to see*/
	color: var(--global-color-1);
	font-size: 130%;
	padding-top: .5em;
	margin-left: 1em;
}
section p {
	margin-left: 2em; /*its is annoying that it is one small section for this site but gotta make it look nice*/
}

section h3 {
	font-size: 105%; /*All of these setting is to  make sure the VTUBERS showing are centered in the site*/
	padding-top: .7em;
	padding-bottom: .2em;
	margin-left: 5em;
	
}

section ul{
	padding: 0 0 .2em 1em;
	/*going to make some margin changnes with the ul and li*/
	margin-left: 2em;
}

section li{
	padding: 0 0 .3em .25em;
}
/*section aside {
	
	flex-basis: 30%;  
	bottom: 100%;
}*/

footer{
	clear: both
}

/* the styles for the footer */
