

* {
	padding: 0;
	margin: 0;
	font-family: sans-serif;
	font-size: 1em;
	border: 0px dotted black;
}


html {
	background-color: #191919;
	color: #fafafa;
}

body {
	display: flex;
	width: 100%;
}

.index {
	width: 100%;
	margin-top: 3em;
	align-items: center;
	align-content: center;
	justify-items: center;
	justify-content: center;
	text-align: center;
}

.blog {
	width: 600px;
	margin-top: 3em;
	align-items: left;
	align-content: left;
	justify-items: left;
	justify-content: left;
	text-align: left;
}

h1 {
	font-family: Georgia;
	font-size: 3em;
	font-weight: bold;
	font-style: italic;
}

h3 {
	font-family: "Georgia";
	font-size: 1.5em;
	font-weight: bold;
}


h5 {
	font-family: Georgia;
	font-size: 1.5em;
	font-weight: bold;
	font-style: italic;
	color: #c94912;
}

p {
	font-family: georgia;
	font-style: italic;
	font-weight: bold;
}


li {
	font-family: georgia;
	font-style: italic;
	font-weight: bold;
}

a {
	text-decoration: none;
}


.button {
	font-family: georgia;
	background-color: #407299;
	color: white;
	display: inline-block;
	text-decoration: none;
	font-style: italic;
	line-height: 1.5em;
	margin: 0;
	padding: .5em;
	border: .25em solid #355F7F;
}

.button:hover {
	background-color: #254259;
}

a:link {
	color: #1292CA;
	text-decoration: italic bold;
	font-family: georgia;
	font-size: 1em;
}

a:hover {
	color: #ffffff;
	text-decoration: italic;
}


a:visited {
	color: #1292CA;
	text-decoration: italic bold;
	font-family: georgia;
	text-decoration: none;
}

header {
	background-color: #191919;
	height: 6.5em;
	width: 100%;
	border-bottom: 2px solid #999999
}

#wrapper {
	max-width: 1000px;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
	
}


#logo  {
	display: inline-block;
	float: right;
	margin: 1%;
	text-align: right;
}

nav {
	vertical-align: middle;
	height: 2em;
	display: inline-block;
	margin: 2%;
	float: left;
	text-align: left;
}

#content {
	display: inline-block;
	clear: both;
	float: left;
	width: 48%;
	margin: 1%;	
	text-align: center;
}

#findme {
	display: inline-block;
	float: right;
	width: 48%;
	margin: 1%;	
	text-align: center;
}

div img {
	max-width: 80%;
	max-height: 80%;
	min-width: 10%;
	min-height: 10%;
}

footer {
	clear: both;
	background-color: #191919;
	height: 3em;
	width: 100%;
	line-height: 50px;
	text-align: center;
	border-top: 2px solid #999999;
}

div img {
	border: 2px dotted #9999999;
	border-radius: 100%;
}

@media only screen and (max-width: 700px){
	#content, #findme {
		float: none;
		width: 100%;
		}

	nav {
		float: none;
		display: block;
		clear: both;
		width: 50%;
		margin: 75px auto;
	}

	#logo {
		float: none;
		text-align: center;
		display: block;
		clear: both;
		width: 75%;
		margin: -205px auto ;
	}
	.button {
		display: block;
		text-align: center;

	}
	header {
		height: 17em;
		line-height: 3em;
		padding: 20px 0;
	}

	h1 {
		font-size: 2.5em;
	}
}

