
/* need to reset CSS? well here it is */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
/* General Styling */

html {
	background-color: #1F1F1F; /*Main background if body isnt present, black*/
}

body {
	max-width: 1920px;
	margin: auto;
	background-color: #424242; /*Background for main context of the page, grey*/
	-webkit-text-stroke: 0.2px #000000;
}

main { /*For the text and background spacing*/
	padding-top: 10px;
	padding-bottom: 10px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	height: auto;
	width: 100%;
}

aside { /*for the images*/
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	float: right;
	padding-right: 50px;
}

img { /*spacing for the images*/
	margin: 1em;
}

h1 { /*settings for h1*/
	font-family: garamond, georgia, serif;
	font-size: 50px;
	padding-bottom: 20px;
	background-color: #230688; /*color is navy*/
	text-align: center;
	padding-top:10px;
	color: #F7AB5E; /*color is orange*/
	text-decoration: none; /*added a href for main page link, took out underline*/
}

h2 { /*settings for h2*/
	font-family: garamond, georgia, serif;
	padding-left: 30px;
		color: #70FFFA; /*color is a light blue/aqua */
		font-size: 35px;
}

h3 {
	font-family: garamond, georgia, serif;
	font-size: 24px;
	padding-bottom: 20px;
		color: #70FFFA; /*color is a light blue/aqua */
}

h4 {
	font-size: 21px; /*resize create an account hyperlink in login page*/
}

p {
	font-family: arial, verdana, helvetica, sans-serif;
	font-size: 16px;
	padding-left: 50px;
		color: #70FFFA; /*color is a light blue/aqua */
}

nav {
	padding-top: 10px;
	padding-bottom: 10px;
	float: right; /* REQUIRED float on the right for nav Kyle Munson added comment 5-10-2026*/
}

nav a, footer a { /*to clear underlines of links and change the color*/
	padding: 0 10px 0 0;
	text-decoration: none;
	color: #70FFFA; 
	font-size: 20px;
}

footer { /*footer settings*/
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #230688; /*color is navy*/
	color: #F7AB5E; /*color is orange*/
}


ul { /*ul settings*/
	padding-left: 10%;
	margin: 10px;
	list-style-type: none;
}

li { /*li settings*/
	color: #E6E179; /*color is yellow*/
	font-size: 35px;
}

form { /* form settings*/
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	padding-left: 30px;
	padding-right: 75%;
	color: #E6E179; /*color is yellow*/
}

iframe { 
	margin-left: 50px;
	margin-bottom: 5px;
}

label { 
	margin-top: 30px;
	font-size: 20px;
}

a { 
	color: #FFFFFF; /*color is white*/
	text-decoration: none; /*removed underline*/
	padding-bottom: 10px;
}

table {
	border: 1px solid #FFFFFF;
	margin-bottom: 1em;
	border-collapse: collapse;
	margin-left: auto;
	margin-right: auto;
}
/*Table setting*/

td, th {
	padding: 0.5em;
	border: 3px solid #FFFFFF;
	color: #E6E179; /*yellow*/
	font-size: 20px;
}
/*Data and header setting for table*/

tr:nth-of-type(even) {
background-color: #230688; /*navy*/
}

caption {
	font-size: 120%
}

#wrapper {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

#recentered { 
	text-align: center;
}

#alignright {
	margin-left: 75%;
}

#video { /*used for the p heading for the iframe*/
	display: flex;
}

#increased {
		font-size: 20px;
}

@media (max-width: 600px) /*REQUIRED media query for mobile users added 5-10-2026*/
{ 

	#video {
			opacity: 0%; /*removed video*/
}
	aside {
		clear: both;
		display: flex; /*moved position for images*/
		flex-wrap: wrap;
	}
	img {
		height: 200px; /*resized*/
		width: 200px;
	}
	li {
		font-size: 25px; /*resized*/
	}
	h2 {
		font-size: 18px;
	padding-bottom: 5px; /*Better spacing*/
	}
	h3 {
		font-size: 18px;
	}
}

@media (max-width: 900px) /*REQUIRED media query for tablet users added 5-10-2026*/
{
	table { 
		margin: 5px;
	}
	img {
		margin-right: 50px;
	}
	iframe {
		margin-right: 20px;
	}
}	