body {
	padding: 0;
	margin: 0;
	font-family: 'DM Mono', monospace;
	background-color: white;
}

#siteTitle {
	font-size: 2.5em;
	text-align: center;
	margin-top: 40px;
	color: black;
}

#subTitle {
	font-size: 1.5em;
	text-align: center;
	margin-top: 10px;
	color: black;
}

#subText {
	text-align: left;
	margin-top: 10px;
	color: dimgray;
	margin-left: 150px;
	margin-right: 150px;
}

nav {
	height: 100px;
	/*background-color: red;*/
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-item {
	background-color: yellow;
	display: inline-block;
	padding: 0 30px;
	font-size: 1.2em;
	line-height: 3em;
	color: black;
	margin: 0 30px;
/*	border: 3px solid transparent;*/
	border: #E48B22;
	border-radius: 50px;
	border-color: #E48B22;
}

a {
	text-decoration: none;
}

.nav-item:hover {
	color: yellow;
	background-color: black;
}

#me_img {
	padding-top: 20px;
	width: 40%;
	text-align: center;
	margin: auto;
    display: block;
}

.iconSize {
	width: 40px;
	margin-right:15px;
	float: right; /*this gets them to go to the right*/
}

#socialMedia {
	width: 100%;
	position: absolute;
	top: 50px;
	left: -15px;
	min-width: 1200px;
}

.footerText {
	line-height: 50px;
	margin: 0px;
}

footer {
	width: 100%;
	/*position: relative;*/
	background-color: black;
	color: white;
	text-align: center;
	position: fixed;
 	left: 0;
 	bottom: 0;
 	width: 100%;
}


