#contactPage {
	overflow: scroll;
}

body {
	height: 100%;
}

#mainContainer {
	width: 100%;
	height: 42.5em;
}

#space {
	height: 3.75em;
	width: 100%;
}

#email {
	height: 7.5em;
	text-align: center;
	font-size: 1.125em;
}

#emailToLink {
	text-decoration: none;
	color: rgb(148,148,148);
}

#emailToLink:hover {
	color: rgb(0,0,0);
}

#social {
	text-align: center;
}

.socialLinks {
	display: inline;
	margin: 0 0.625em;
}

.socialLinks img {
	width: 2.25em;	
}

.socialLinks a {
	text-decoration: none;
}

/*full-size desktop styling*/	
@media only screen and (min-width: 800px) {
	body {
		font-size: 16px;
	}

	#mobileEmailInfo {
		display: none;
	}
}

/*tablet styling*/	
@media only screen and (min-width: 500px) and (max-width: 800px) {
	html {
		overflow: scroll;
	}

	body {
		font-size: 16px;
	}

	#mobileEmailInfo {
		display: none;
	}

	#mainContainer {
		height: 60%;
	}
}

/*mobile styling*/	
@media only screen and (max-width: 500px) {
	body {
		font-size: 12px;
	}

	#mainContainer {
		height: 50%;
	}

	#resumeLink {
		display: none;
	}

	#space {
		height: 2em;
	}

	#email {
		display: none;
	}

	#mobileEmailInfo {
		height: 6em;
		width: 80%;
		margin: 0 auto;
		text-align: center;
		font-size: 1.6em;
		color: rgb(0,0,0);
	}

	#mobileEmailToLink {
		text-decoration: none;
		color: rgb(2,122,89);
		font-weight: bold;
	}

	#mobileEmailToLink:hover {
		color: rgb(0,0,0);
	}

	.socialLinks {
		margin: 0 1.4em;
	}

	.socialLinks img {
		width: 3em;	
	}
}





