@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@600;700;800&display=swap');

body {
	background-image: url("./res/bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
	overflow: hidden;
	font-family: "Lexend", sans-serif;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin: 0;
}

.countdown {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}

.box {
	height: 220px;
	width: 220px;
	border-radius: 10px;
	margin: 0 20px;
	text-align: center;
	font-weight: 800;
	display: flex;
	flex-direction: column;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.20) 100%);
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.02);
	backdrop-filter: blur(15px);
	color: white;
}

.box .value {
	flex: 1;
	font-size: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.box .label {
	margin: 7px 0;
	font-size: 28px;
}

.sep {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.circle {
	display: block;
	background: white;
	height: 12px;
	width: 12px;
	border-radius: 999px;
	margin: 5px 0;
}

@media screen and (max-width: 500px) {
	body {
		background-position: -300px center;
	}

	.countdown {
		margin-bottom: 140px;
	}

	.box {
		height: 75px;
		width: 75px;
		margin: 0 10px;
	}

	.box .value {
		font-size: 40px;
	}

	.box .label {
		font-size: 13px;
	}

	.sep {
	}

	.circle {
		display: block;
		background: white;
		height: 8px;
		width: 8px;
		border-radius: 999px;
		margin: 5px 0;
	}
}