html {
	font-family: 'Open Sans', sans-serif;
	background-color: #152636;
}
.block {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 500px;
   height: 320px;
   margin-top: -147px; /* Half the height */
   margin-left: -250px; /* Half the width */
   text-align: center;
}

/* Component styles */

.block a {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-decoration: none;
	border: none;
	box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.3), 0 3px 3px rgba(0, 0, 0, 0.15), 0 3px 2px -2px rgba(0, 0, 0, 0.2);
	font-weight: bold;
	color: #fff;
	font-size: 1.25em;
	text-shadow: 0 -0.5px 1px rgba(0, 0, 0, 0.15);
	margin-top:20px;
}

.button {
	padding: 1em 3em;
	margin: 0;
	position: relative;
	min-width: 150px;
	display: inline-block;
	-webkit-transition: 200ms background cubic-bezier(0.4, 0, 0.2, 1);
	transition: 200ms background cubic-bezier(0.4, 0, 0.2, 1);
	background: #466fb5;
}

.button:hover,
.button:focus {
	outline: none;
	background: #305798;
}

.ripple-obj {
	height: 100%;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	fill: #AD1457;
}

.ripple-obj use {
	opacity: 0;
}
