*{
	margin: 0;
	padding: 0;
}

body{
	background: #000 url(bg.jpg);
	background-attachment: fixed;
	background-blend-mode: hard-light;
	font-family: fantasy;
}

.container{
	position: absolute;
	top: 80px;
	left: 100px;
	right: 100px;
	bottom: 80px;
	background: url(bg.jpg);
	background-attachment: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0 50px 50px rgba(0,0,0,0.5),
				0 0 0 100px rgba(0,0,0,0.1);

	border-radius: 5px;
}

.container h2{
	text-align: center;
	font-size: 5em;
	line-height: 0.7em;
	color: #ff3;
	text-shadow: 2px 2px 5px #000;
	margin-top: -80px;
}

.container h2 span{
	display: block;
	font-size: 0.5em;
	font-weight: 500;
	letter-spacing: 6px;
}

.countdown{
	display: flex;
	margin-top: 50px;
}

.countdown div{
	position: relative;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	background: linear-gradient(#ec1063, #960083);
	color: #fff;
	margin: 0 10px;
	font-size: 3em;
	font-weight: 500;
}

.countdown div:before{
	content: '';
	position: absolute;
	bottom: -30px;
	left: 0;
	width: 100%;
	height: 50px;
	background: #ec1063;
	color: #fff;
	font-size: 0.35em;
	line-height: 35px;
	font-weight: 300;
}

.countdown #hari:before{
	content: 'Hari';
}
.countdown #jam:before{
	content: 'Jam';
}
.countdown #menit:before{
	content: 'Menit';
}
.countdown #detik:before{
	content: 'Detik';
}
