*
{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */

	transition: all .5s ease-in-out 0s;
	-ms-transition: all .5s ease-in-out 0s;
	-webkit-transition: all .5s ease-in-out 0s;
}

html
{
	background-color: #fff;

}

body
{
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;

	margin: 0 auto;
	padding: 0;


}

h1, h2
{
	font-weight: normal;
	text-align: center;


}

h1
{
	margin: 0;

}
div.heading
{
	height: 0;
	width: 100%;
	position: absolute;
}
h2
{
	margin: 0 auto;
	background-color: #1A3642;
	color: white;
	display: block;
	width: 120px;
	height: 120px;
	line-height: 120px;
	border-radius: 50%;
	position: relative;
	top: -60px;
}

div.topBanner
{
	background-image: url('../img/web-bkd.jpg');
	background-color: #1A3642;

	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;

	height: 300px;
	padding-top: 30px;
}
@media screen and (min-width: 768px)
{
	div.topBanner
	{
		height: 400px;
		padding-top: 40px;
		background-size: 100%;
	}

}




h1 a
{
	text-decoration: none;
	background-color: #fff;
	color: #8B3204;

	display: inline-block;

	height: 200px;
	line-height: 200px;
	width: 200px;
	border-radius: 50%;

	margin-top: 20px;
}

h1 a:hover
{
	background-color: #8B3204;
	color: #fff;
	/*
	height: 220px;
	line-height: 220px;
	width: 220px;

	margin-top: 10px;
	*/
}

ul.projects,
ul.projects li
{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
ul.projects li
{
	display: block;
	margin: 0;
	margin-top: 3px;
}
ul.projects li a
{
	display: block;
	color: white;
	text-decoration: none;
	height: 180px;
	line-height: 180px;

	font-size: 3em;

	background-color: #222;

	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;

}
ul.projects li.bounce a
{
	background-image: url('../img/banner-bounce.png');
	background-color: #82B276;
	color: #222;

}
ul.projects li.fishtank a
{
	background-image: url('../img/banner-fishtank.png');
	background-color: #132233;
	color: white;
}
ul.projects li a:hover
{
	background-size: 110%;
	font-size: 6em;
}

@media screen and (min-width: 1024px)
{
	ul.projects li a
	{
		height: 300px;
		line-height: 300px;
		font-size: 4em;
	}

	ul.projects li a:hover
	{
		font-size: 8em;
	}
}


