body,
html {
	min-width: 100%;
	min-height: 100%;
	padding: 0;
	margin: 0;
}

html {
    box-shadow: -0px -0px 13px 15px rgba(0, 0, 0, 0.18) inset;
}

body {
	font-family: 'Arvo', serif;
	background: #e6007e url('body_bg.jpg') no-repeat;
	background-size: cover;
	background-attachment: fixed;
	font-size: 24px;
	text-align: center;
	color: #fff;
}

#logo {
    width: 80px;
    margin: 40px 0 0 0;
    display: inline-block;
}

h1 {
	display: block;
	width: 60%;
    margin: 0 auto 50px auto;
    padding: 0 0 0px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

h1 span {
	font-weight: 400;
}

form {
	display: inline-block;
	width: auto;
	padding-top: 50px;
	border-top: 3px solid #326b1b87;
}

input {
	font-family: 'Arvo', serif;
	font-size: 22px;
	padding: 0.5em;
	border: 3px solid #ffee00;
	background: #52a32e;
	border-radius: 100px;
	width: 70px;
	color: #fff;
    box-shadow: 
    12px 12px 16px 0 rgba(0, 0, 0, 0.18) inset,
    -8px -8px 12px 0 #00000017 inset;	
    outline: none;
}

button {
	font-family: 'Arvo', serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #31671b;
	font-size: 22px;
	padding: 0.6em 5em;
	background: linear-gradient(145deg, #ffff00, #e6d600);
	border-radius: 100px;
	border: 0px;
	margin: 50px 0 0 0;
	cursor: pointer;
	transition: all 0.3s;
    box-shadow:  10px 10px 40px #204810, 
             -10px -10px 40px #aee227;	
    outline: none;
    overflow: hidden;
    position: relative;
}

button a {
	position: relative;
	z-index: 10000;
}

button a:after {
	content: '';
	width: 0%;
	height: 0%;
	opacity: 0;
	line-height: 40px;
	border-radius: 50%;
	background: #e6007e;
	position: absolute;
	transition: all .2s ease-Out;
	top: 50%;
	left: 50%;
	z-index: -1;
}

button:hover a:after {
  width: 500%;
  height: 500%;
  opacity: 1;
  top: -200%;
  left: -200%;
}


button:hover {
	font-weight: 700;
	margin: 53px 0 -3px 0;
    box-shadow:  5px 5px 10px #4c021ba3, 
             -5px -5px 10px #f398b78f;	
}

button:hover a {
	color: #fff;
	z-index: 10000;
}

button:active a:after {
	background: red
}

button:active {
	background: red
}

#headline {
	width: 85%;
	margin: 70px 0;
	font-size: 110px;
	background: #fff;
	display: inline-block;
	padding: 0.5em 0.2em;
	border-radius: 20px;
	color: #000;
	//background: linear-gradient(0deg, #aba9a9, #ffffff);
	box-shadow:  20px 20px 60px rgba(0,0,0,0.6), 
				 -20px -20px 60px #6dd840,
				 0px 0px 120px rgba(0, 0, 0, 0.15) inset;	
}