/* Tablet
@media (min-width: 550px) {
}
*/

/* Desktop
@media (min-width: 700px) {
}
*/

/* Larger Sreens
@media (min-width: 800px) {
}
*/

/*** GENERAL STYLES ***/
body {
  background-color: #f1f1f1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0px auto;
  width: 100%;
  text-align: left;
}

.wrapper {
	max-width: 800px;
	background-color: #e9e9e9;
	margin: auto;
	border: 1px solid white;
}

@media (min-width: 800px) {
	.wrapper {
			margin-top: 10px
		}
}

h1 {
	font-size: 2em;
	text-align: center;
	padding: 30px 0 0;
}

@media (min-width: 550px) {
	h1 {
		font-size: 2.7em;
		text-align: left;
		margin: 0 20px;
		padding: 30px 0;
	}
}

@media (min-width: 700px) {
	h1 {
		font-size: 3.5em;
		margin: 0 30px;
		padding-top: 40px;
	}
}

@media (min-width: 800px) {
	h1 {
			margin-left: 40px
		}
}

h2 {
	font-size: 1.8em;
	text-align: center;
	margin: 20px 0 0;
}

@media (min-width: 550px) {
	h2 {
		font-size: 2em;
		text-align: left;
		margin: 30px 5px 30px 20px;
	}
}

@media (min-width: 700px) {
	h2 {
		font-size: 2.5em;
		margin: 30px 20px 30px 30px;
	}
}

@media (min-width: 800px) {
	h2 {
			margin-left: 40px
		}
}

.description {
	margin: auto;
	width: 265px;
}


section li {
	font-size: 0.9em;
}

@media (min-width: 550px) {
	section li {
		font-size: 1em;
	}
}

@media (min-width: 700px) {
	section li {
		font-size: 1.2em;
	}
}


/*** COLOR ***/
/***DESCRIPTION POSITION***/
h1 {
	color: #ea2d68;
}

#entrepreneur .subtitle {
	color: #676680;
}
#entrepreneur .description{
	color: #a4a3b3;
	position: relative;
	left: 15px;
}
#marketer .subtitle {
	color: #8e063a;
}
#marketer .description {
	color: #bb6a89;
	position: relative;
	left: 45px;
}
#web-developer .subtitle {
	color: #005572;
}
#web-developer .description {
	color: #6699aa;
	position: relative;
	left: 5px;
}
#web-design .subtitle {
	color: #807373;
}
#web-design .description {
	color: #b3abab;
	position: relative;
	left: 40px;
}

@media (min-width: 550px) {
	.description {
		margin: 0;
		display: inline-block;
		width: auto;
	}

	.subtitle{
	display: inline-block;
	}

	#entrepreneur .description, #marketer .description{
		position: relative;
		left: 0;
		top: 15px;
	}

	#web-developer .description, #web-design .description {
		position: relative;
		left: 0;
		top: 3px;
	}

}


/*** FOOTER ***/

footer {
	text-align: center;
	margin-top: 30px;
	padding: 30px 0;
}

@media (min-width: 700px) {
	footer {
		margin-top: 10px;
	}
}

footer img {
	height: 30px;
	width: auto;
	margin: 0 10px;
}

@media (min-width: 700px) {
	footer img {
		margin: 0 20px;
	}
}

footer li {
	display: inline-block;
}

/*** HIDE/SHOW DESCRIPTIONS ***/

section ul {
	display: none;
}

section a:hover ul {
	display: block;
}

