/* Mary Bishop 7/30/17
	CIS 111J   Final Project Styles
	
*/

/** Overall Page styling **/
* {
	box-sizing: border-box;
} 
body {
	background-color: black;
	font-family: Rubik, Verdana, sans-serif;
}
#page {
	margin: 0 auto;
}

hr {
	margin: 0px 70px;
	color: #0294fe;
}
	
/** Header/Footers **/
header {
	height: 140px;
	font-weight: bold;
}


header, footer {
	background-color: #0294fe; 
}
footer p, footer img, footer ul {
	display: inline;
}
footer p {
	margin: 10px 0px 20px 20px;
}

#logo {
	margin: 2px 510px;
}

footer ul {
	margin: 20px 35px 10px 0px;
}
footer li {
	display: inline;
}
/**	
	img#logo {						FMT for logo in header	
		float: left;
		width: 150px;
		padding-right: 30px;
	}
**/
#pageTitle {
	font-family: verdana; 
	font-size: 400%;
	padding-top: 15px;
	text-shadow: 2px 4px LightGray;     /** #ccffff; is too much **/
}
#fname {
	color: #ccffff; 
	text-shadow: 2px 4px #000000;
}
#subTitle {
	font-size: 200%;
	float: left;
}
#pageTitle, #subTitle {
	padding-left: 20px;
}
nav {
	float:right;
}
nav ul {
	padding-right: 70px;
}
nav ul li {
	padding-bottom: 70px;  /*** doesn't do anything??? ***/
}


/** Formats for links **/

a, a:link, a:visited, a:hover {
	text-decoration: none;
	font-weight: normal;
}
footer a {
	color: #ccffff;
}
footer a:hover img {
	border: 2px #015693 solid;
}
footer a:hover {				/** footer and content hovers need to be **/
	background-color: #015693;  /** different colors bc different background colors **/
}

.content a {
	/*border-top: 1px #0294fe solid;
	border-bottom: 1px #0294fe solid;*/
	
	/*background-color: #52ffff; /* #109bfe; /* #0294fe; */
	color: #000000;  /*#015693; */
	text-shadow: 1px 1px 4px #0294fe;  /** try a glow/blur to show link?*/
}

.content a:hover {
	background-color: #0294fe; /*#015693;*/
	color: #ccffff;
	text-shadow: none;
}

nav li {
	display: inline;
}
nav li a, nav li a:link, nav li a:visited
{
	font-size: 16px;
	float: right;
	padding: 2px 5px 2px 5px;
	margin: 0 5px 0 0;
	border-top: 2px #ccffff solid;
	border-bottom: 2px #ccffff solid;
}
	
nav li a:hover {
	background-color: white;
}


	
#SocialMedia img{
	width: 5px;
	height: 5px;
	margin: 2px 0px;
}
	
/** Mid-section styles**/

/** format left sidebar section **/
#sideImg {
	padding: 100px;
}
#side {
	float: left;
	width: 33%;
	height: 500px;
	background-image: url('../images/BK_Blue_Lights.png');
}
	
/** formats for right section**/

.content {
	width: 67%;
	height: 500px;
	background-color: #ccffff;
	display: inline-block;
}

h3, h4 {
	text-align: center;
	font-weight: bold;
}
h3 {
	font-size: 1.7em;
}

h4 {
	font-size: 1.5em;
}
	
#BIO {
	text-align: justify;
    padding: 40px 75px;
	font-size: 1.3em; /* was 1.6*/
}
#BIO img {
	float: right;
}
	
.EDUC {
	font-size: 1.6em;	
}
.EDUC table {
	margin: 0 auto;
	font-size: 1em;
	padding: 60px 20px 0px 20px;
	border-spacing: 30px 2px;
}

.EDUC ul {
	margin: 0 auto;
	text-align: center;
	list-style-type: none;
}

#EXP {
	font-size: 1.6em;
	margin: 0 auto;
}
#EXP p {
	text-align: justify;
	margin: 60px 70px 10px 70px;
}
	
#EXP table {
	margin: 0 auto;
	font-size: .8em;
	padding: 40px 20px;
	border-spacing: 30px 2px;
}
	
/** Form styles */
form {
	margin: 0 auto;
	padding: 20px 100px;
	font-size: 1.5em;
}

fieldset {
	border: none;
}
legend {
	margin: 0 auto;
}
input, textarea {
	border-style: inset;
	font-size: 1em;
}
input {
	width: 250px;
	margin-right: 40px;
}
textarea {
	width: 700px;
	height: 200px;
}

.buttonPane {
	text-align: center;
}
.button {
	width:100px;
	border-radius: 2px;
}
