* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: sans-serif;
	color: #fff;
}

body {
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #212121;
}

.clock {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.clock::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	z-index: 2;
}

.clock span {
	position: absolute;
	transform: rotate(calc(30deg * var(--i)));
	inset: 8px;
	text-align: center;
}

.clock span b {
	transform: rotate(calc(-30deg * var(--i)));
	display: inline-block;
	font-size: 18px;
	font-weight: normal;
	text-align: center;
}

.clock .pointer {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.pointer i {
	position: absolute;
	width: var(--w);
	height: var(--h);
	background-color: var(--clr);
	border-radius: 8px;
}

.dots {
	width: 100%;
	height: 100%;
}

.dots .dot {
	position: absolute;
	inset: 5px;
	transform: rotate(calc(6deg * var(--r)));
	text-align: center;
}

.dots .dot b {
	width: 1px;
	height: 3px;
	background-color: #fff;
}

.digital-clock {
	text-align: center;
	font-size: 22px;
	margin-top: 40px;
}
