* {
	box-sizing: border-box;
}

body {	
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 100vh;
	font-family: 'Poppins', sans-serif;
	margin: 0;
}

h1 {
	letter-spacing: 2px;
	text-align: center;
	text-transform: uppercase;
}

.countdown-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}

.countdown-item {
	color: #8761e7;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin: 5px;
	position: relative;
	width: 80px;
	height: 80px;
}

.countdown-item span {
	color: #8761e7;
	font-size: 8px;
	font-weight: 600;
	text-transform: uppercase;
	margin-top:-5px;
}

.countdown-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
}