html,body {
	height:100%;
	font-family: "Marcellus", sans-serif;
	background: #fefefe;
	margin: 0;
  display: flex;
  flex-direction: column;
}
#wrapper{
	min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
header {
	background: #fefefe;
  /*background: linear-gradient(90deg, rgba(198,46,57,1) 0%, rgba(77,169,223,1) 100%);*/
	box-shadow: 1px 1px 3px #444;
	display: flex;
	justify-content: center;
	padding: 30px;
	height: 100px;
}
header img{
	width: 100%;
	height: auto;
	margin: 0;
	object-fit: contain;
}
section#wp-action{
	flex-grow: 1;
	display: flex;
  flex-direction: column;
	padding-top: 50px;
	padding-bottom: 50px;
	align-items: center;
}
section#wp-action .btn-action{
	max-width: 720px;
  width: 100%;
	display: flex;
	flex-grow: 1;
	padding: 30px;
}
section#wp-action .btn-action a{
	text-decoration: none;
  width: 100%;
	display: flex;
}
section#wp-action .btn-action button{
  font-family: inherit;
  font-size: 60px;
  font-variant: small-caps;
  width: 100%;
  background: #181816;
  transition: all 0.2s;
  border-radius:0.12em;
  box-sizing: border-box;
  padding: 30px;
  color: #fefefe;
}
section#wp-action .btn-action button:hover{
  background: #A8353A;
  cursor: pointer;
}
footer {
	background: #A8353A;
	color: #fefefe;
	box-shadow: 1px 1px 3px #444;
	font-size: 30px;
	width: 100%;
	display: flex;
	justify-content: center;
}