html body {
	background-size: cover;
}
body {
	background-repeat: no-repeat;
	background-position: center center;
	margin: 0;
	padding: 0;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	height: 100vh;
	transition: filter 3s;
}
h1, h2, .main-text {
	color: white;
}
body.admin-bar {
	height: calc(100vh - 32px);
}
body.reload-page {
	filter: blur(6px) brightness(2);
}
div.whole-overlay {
	background: rgba(0,0,0,0.3);
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;	
}
div.center-content {
	background: rgba(0,0,0,0.3);
	width: 80%;
	height: 80%;
	max-width: 960px;
	max-height: 800px;
	padding: 20px;
	display: flex;
	flex-direction: column;	
}
h1 {
	position: relative;
	overflow: hidden;
	margin: 0 0 12px 0;
}
h1 img {
	width: 100%;
	height: auto;
}
h1 span {
	position: absolute;
	top: -500px;
	left: -500px;
}
h2 {
	font-size: 1.67em;
	margin: 0 0 6px 0;
}
div.main-text {
	flex: 1;
}
div.connect {
	flex: 2;
}
p {
	margin-top: 0;
}
form.hidden {
	filter: grayscale(0.8) blur(1px);
	opacity: 0.4;
}
label {
	display: block;
	font-size: 0.7em;
	margin-bottom: 2px;
	float: none;
	width: auto;	
}
input.text, input.button {
	font-size: 1.2em;
	padding: 8px 12px;
}
input.text {
	border: none;
	flex: 1;
	min-width: 100px;		
}
input.button {
	background: #168240;
	color: white;
	border: none;
}
div.button-container {
	display: flex;
	justify-content: center;
}
p.form-field {
	display: flex;
	max-width: 500px;	
}
a.button {
	background: #70100e;
	padding: 8px;
	color: white;
	text-decoration: none;
	font-size: 1.2em;
}
/* Countdown */
#countdown {
	display: flex;
	color: white;
	flex-direction: column;
	justify-content: center;	
	align-items: center;
	flex: 2;
	transition: color 2s;
}
#countdown.done {
	color: red;
}
div.time {
	display: flex;
}
div.time > div {
	width: 33.3%;
}
div.time > div.hidden {
	display: none;
}
div.caption {
	font-size: 34px;
	line-height: 34px;
	text-align: center;
}
div.number {
	font-size: 100px;
	line-height: 100px;
	text-align: center;
	width: 155px;
}
div.unit {
	font-size: 31px;
	line-height: 31px;
	text-align: center;
}
/* Cancel other styles */ 
body header, body footer, aside, aside.widget-area, header.site-header {
	display: none;
}

@media (max-width: 640px) {
	div.number {
		font-size: 15.625vw;
		line-height: 15.625vw;
		width: 24.22vw;
	}
	div.unit {
		font-size: 3.28vw;
		line-height: 3.28vw;
	}
}
@media (max-width: 400px) {
	h2 {
		font-size: 7.5vw;
	}
	input.text, input.button {
		font-size: 5.5vw;
		padding-left: 2vw;
		padding-right: 2vw;
	}
}
