*{
	margin: 0;
	padding: 0;
}

@font-face /*perintah untuk memanggil font eksternal*/
{
	font-family: 'BebasNeue'; /*memberikan nama bebas untuk font*/
	src: url('assets/fonts/BebasNeue-Regular.ttf');/*memanggil file font eksternalnya di folder nexa*/
}



body{
	/*background: #000 url(bg.jpg);
	background-attachment: fixed;
	background-blend-mode: hard-light;*/
	font-family: BebasNeue;
}

h1{
	font-size: 60px;
	letter-spacing: 5px;
}

.container{
	position: unset;
	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;*/
}

.countdown{
	display: flex;
}

.countdown div{
	position: relative;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	/*background: linear-gradient(#ec1063, #960083);
	color: #fff;*/
	border:2px solid;
	margin: 0 30px;
	font-size: 3em;
	font-weight: 500;
	border-radius: 12px;
}

.countdown div:before{
	content: '';
	position: absolute;
	bottom: -60px;
	left: 0;
	width: 100%;
	height: 50px;
	/*background: #ec1063;
	color: #fff;*/
	font-size: 0.35em;
	line-height: 35px;
	font-weight: 700;
}

.countdown #hari:before{
	content: 'DAYS';
}
.countdown #jam:before{
	content: 'HOURS';
}
.countdown #menit:before{
	content: 'MINUTES';
}
.countdown #detik:before{
	content: 'SECONDS';
}

.abox-position{
	position:relative; 
	bottom:10px; 
	text-align:right;
}
.abox-eo{
	padding:50px;
}



@media only screen and (max-width: 720px) {
	h1{
		font-size: 30px;
		letter-spacing: 3px;
	}
	.abox-padding{
		padding:20px;
	}
	.abox-font-p{
	    letter-spacing: 0px !important;
		font-size: smaller;
	}
	.countdown div{
		margin: 0 3px;
		width: 70px;
	}
	.abox-position{
		margin-top:85px;
	}
	.abox-eo{
		padding:2px;
		margin-top: 2rem!important;
		margin-bottom: 1rem!important;
	}
	.abox-delete-padding-right{
		padding-right:unset;
	}
	.row{
		--bs-gutter-x: unset;
		--bs-gutter-y: unset;
	}
}