/*
Base stylesheet for index.html and other website pages
*/

body {
	font-family: Times, serif;
	font-size: 1.3em;
	color: white;
    margin: 0px auto;
    width: 80%;
	}

/* Sunset CSS Linear Gradient Background */

#gradient {
  background-image: linear-gradient( 
      #005faa, #89dfe8, #fcc1fb, #300077
  );
}

.star_background {
    background: black;
	background-image: url(Media/Website_Images/header_background.gif);
    border: 5px solid orchid;
    display: block;
    width: 100%;
}

/* Header Styles */

header {
    border: 5px solid #FF00FF;
	display: block;
    height: 130px;
    margin: 0px auto 10px auto;
	width: 95%;
	}

header a {
    display: block;
    text-align: center;
}

header img {
	display: block;
    height: 130px;
	margin-left: auto;
	margin-right: auto;
	}
	
/* Navigation Styles */	

#main_nav {
    background: linear-gradient(to right, #ff66c4, #ffde59);
    border: 5px solid navy;
    margin: 0;
    padding: 5px 0;
    position: sticky;
	text-align:center;
    top: 0;
    width: 99%;
    z-index: 9999;
}

#main_nav ul {
	display: inline-block;					   
	list-style-type: none;
	margin: 0 auto;
	padding: 0;	
	text-align: center;
	}

#main_nav ul li {
	background-color: #ccc;
	border: 3px solid #666;
	box-shadow: inset 3px 3px 0px #fff;
	display: inline-block;
	font-size: 0.8em;
	font-weight: 700;
	padding: 5px 24px;
	}
	
#main_nav ul a {
	color: blue;
	text-decoration: none;	
}

#main_nav ul a:hover {
	text-decoration: underline;
	color: purple;
}
	
/* Main Body Styles */

#main_body {
	display: flex;	
    justify-content: center;
	margin: 0em auto 3em auto;
	width: 95%;
}

#main_sections { 
	display: block;
	width: 65%;
}

/* OLD
.title_section {
    text-align: center;
    padding: 0.3em;
}

#home_intro h1 {
    margin: 0px;
}

.gif_heading_gif {
    align-items: center;
    display: flex;
    justify-content: center;
}

.gif_heading_gif img {
    margin: 0px 20px;
}*/

/*NEW*/
.page_heading {
    /* text-align: center;
    padding: 0.3em;
   align-items: center;*/
    display: flex;
    justify-content: center;
    width:100%;
}

#home_greeting .page_heading {
    flex-direction: column;

}





/*
 * Styles for dropdowns 
 */

summary {
    color: white;
    justify-content: center;
}

summary p {
    margin: 0px;
    padding: 0.3em;
}

summary p:hover {
    color: pink;
}

details {
  user-select: none;
}

details>summary span.span_icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s;
}

details[open] summary span.span_icon {
  transform: rotate(180deg);
}

details[open] {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2em;
}

summary {
  display: flex;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

details img {
    display: inline-block;
}

/*end*/

/*#main_container */




/*sidebar styles */

form {
    background-color: orchid;
    padding: 0px 0px 30px 0px;
    text-align: center;
}

#search_box {

    font-size: 15px;
    height: 30px;
    width: 70%;
}

form p {
    font-size: 30px;
    margin: 0px;
    padding: 20px 0px 10px 30px;
    text-align: left;
}

#search_button {
    font-size: 1em;
    height: 30px;
    width: 20%;
}

/*CHECK IF TO SEE IF THIS IS USED*/
#main_body aside {
    display: flex;
	margin-left: 2%;
	width: 33%;
}


/* download page styles */

#download_section {
    background-image: url(/Media/Website_Images/grass_background.png);
}




	
