/** Buttons **/
.button a,
button {
  display: inline-block;
  padding: 0.5em 2.75em;
	background:	#9f111b;
  font-size: 1.3125em;
	margin: 0.5em 0;
	text-align: center;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  border: 0;
  transition: all 0.3s ease 0s;
}

.button a:hover,
.button a:focus,
button:hover,
button:focus {
  background-color: #710c13;
}
.button-center,
.text-center {
  text-align: center;
}

button {
  cursor: pointer;
}