* {
	margin: 0;
	padding: 0;
}
body {
    background-color: #dddddd;
}
#container {
	background-image: radial-gradient(600px 300px at top, #ffffff, #dddddd);
}
#top {
	padding-top:100px;
	width: 800px;
	margin: 0 auto;
} 
#intro {
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	text-align: center;
	line-height: 150%;
	margin-top: 50px;
}
#intro img {
	margin-left: 5px;
}
.email {
	font-weight: 700;
}
/*.email:hover, .email:focus, .email:active {
	text-decoration: underline;
}*/
#nav {
	margin: 50px auto 0 auto;
	width: 800px;
	height: 60px;
	text-align: center;
}
#subnav {
	margin: 0 auto;
	width: 800px;
	height: 45px;
	margin-top: 40px;
	text-align: center;
}
.button {
	height: 60px;
	padding-left: 15px;
	padding-right: 15px;
	background-color: #333333;
	color: #ffffff;
	font-family: 'Oswald', sans-serif;
	font-weight: 400px;
	font-size: 40px;
	text-align: center;
	display: inline-block;
	cursor: pointer;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.button:hover, .button:focus, .button:active {
  background-color: #fdb515;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.buttonsm {
	height: 40px;
	padding-left: 12px;
	padding-right: 12px;
	/*padding-bottom: 8px;*/
	border: 2px solid #333333;
	color: #333333;
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	font-weight: 200;
	text-align: center;
	display: inline-block;
	cursor: pointer;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.buttonsm:hover, .buttonsm:focus, .buttonsm:active {
  /*background-color: #fdb515;*/
  font-weight: 400;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

