* {
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, sans-serif;
}

.button {
	display: block;
	width: 180px;
	height: 60px;
	position: relative;
	border: 2px solid #04a;
	border-radius: 5px;
	margin: 100px auto;
	background-color: #06c;
}

.button .content {
	display: block;
	position: absolute;
	bottom: 6px;
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: #09f;
	box-shadow: 0 6px 0 #06c;
	border-radius: 5px;
	transition: all 0.1s linear;
}

.button:active .content {
	bottom: 0;
	box-shadow: 0 0 0 #06c;
}

h1, #result, p {
	margin: 10px;
	text-align: center;
}