:root {
	--primary: #ddd;
	--dark: #333;
	--darker: #222;
	--light: #fff;
	--background: #4799B7;
	--accent: #E65F00;
	--accentBlue: #00BECC;
	--link: #0078FF;
	--shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
	--shadowWide: 0 1px 15px rgba(80, 80, 80, 0.8);
	--font: 'Fredoka One', cursive;
	/*--postNumber: 0;*/
}
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
html {
	height: 100%
}
body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 100%;
	font-family: var(--font);
	margin: 0;
	background-color: var(--background);
	position: relative;
}
.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: 600px;
}
.header h1 {
	user-select: none;
	font-family: "Freckle Face", cursive;
	font-weight: normal;
	font-size: 8rem;
	color: white;
	text-align: center;
	margin: 0;
}
.header p {
	/*font-family: Raleway, sans-serif;*/
	color: var(--light);
	text-align: center;
	margin: 0 0 15px 0;
	font-weight: 100;
}

.buzz {
	animation-name: buzz;
	animation-duration: .9s;
	animation-delay: .25s;
	animation-iteration-count: 1;
}

@keyframes buzz {
	0% {transform: rotate(0deg)}
	10% {transform: rotate(-7deg)}
	20% {transform: rotate(7deg)}
	30% {transform: rotate(-7deg)}
	40% {transform: rotate(7deg)}
	50% {transform: rotate(-7deg)}
	60% {transform: rotate(7deg)}
	100% {transform: rotate(0deg)}
}

.zoomBounce {
	animation-name: zoomBounce;
	animation-duration: .6s;
	animation-iteration-count: 1;
}

@keyframes zoomBounce {
	0% {transform: scale(1)}
	20% {transform: scale(1.1)}
	50% {transform: scale(.95)}
	80% {transform: scale(1.02)}
	100% {transform: scale(1)}
}

.input {
	margin: auto;
	width: 70%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.input:focus-within .header h1 {
	animation-play-state: running;
}

.input input{
	width: 100%;
	border: 0;
	border-radius: 2px;
	padding: .6rem 0;
	text-align: center;
	font-size: 1rem;
	background-color: var(--light);
	transition: background-color .3s, border-color .3s, box-shadow .3s;
}

.input input:focus{
	outline: 0;
	background-color: var(--light);
	box-shadow: inset 0px 0px 0px 3px var(--accent);
}
input::placeholder {
	text-align: center;
	font-family: var(--font);
	font-size: 15pt;
	text-transform: none;
}
.input input:focus::placeholder{
	color: #999;
}
input[type="text"]
{
    font-size:15pt;
    font-family: var(--font);
	text-transform: uppercase;
}
.btn {
	background-color: var(--dark);
	color: var(--light);
	padding: .7rem .6rem;
	text-decoration: none;
	border-radius: 2px;
	transition: color .2s, 
	box-shadow .2s, transform .1s;
	transition-timing-function: ease-out;
	font-size: 14pt;
	margin-top: 10px;
	text-align: center;
}
.btn-wrap {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 10px;
}
.btn:hover {
	/*background-color: var(--darker);*/
	/*color: var(--accentBlue);*/
	cursor: pointer;
	box-shadow: inset 0px 0px 0px 3px var(--accent);
	/*box-shadow: 0px 0px 10px 1px var(--dark);*/
	border-radius: 2px;
	/*transform: translateY(-2px);*/
}

.btn:focus {
	outline: 0;
}

.btn:active {
	transform: scale(.97);
}

.faq {
	color: white;
	position: absolute;
	bottom: 0;
	transition: transform .3s ease-out;
}
.faq:hover {
	transform: scale(1.1);
	text-decoration: underline;
	cursor: pointer;
}

h5 {
	display: none;
	color: white;
	font-family: arial;
	position: absolute;
	bottom: 20px;
	font-size: 25pt;
}

.zoomBounce {
	animation-name: zoomBounce;
	animation-duration: .6s;
	animation-iteration-count: 1;
}

@keyframes zoomBounce {
	0% {transform: scale(1)}
	20% {transform: scale(.9)}
	50% {transform: scale(1.05)}
	80% {transform: scale(.98)}
	100% {transform: scale(1)}
}

@media(max-width: 600px) {
	.wrapper {
		margin-bottom: 20%;
	}
	.header h1 {
		font-size: 25vw;
	}
	.btn:hover {
		color: var(--light);
		background-color: var(--dark);
		box-shadow: none;
	}
	.faq:hover {
		transform: none;
	}
}