* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background-image: linear-gradient(to bottom right, #C9FFBF, #FFAFBD);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
}
.header {
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(50%, 50%);
}
.container {
	width: 400px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.clock {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba( 255, 255, 255, 0.13 );
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
	border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.clock::before {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	background-color: #fff;
	border-radius: 50%;
	z-index: 6;
}
.clock .hour,
.clock .minute,
.clock .second {
	position: absolute;
}
.clock .hour .hr {
	width: 160px;
	height: 160px;
}
.clock .minute .mn {
	width: 190px;
	height: 190px;
}
.clock .second .sc {
	width: 230px;
	height: 230px;
}
.hr, .mn, .sc {
	display: flex;
	justify-content: center;
	/*align-items: center;*/
	border-radius: 50%;
}
.hr::before {
	content: '';
	position: absolute;
	width: 8px;
	height: 85px;
	background-color: #00ff5e;
	z-index: 3;
	border-radius: 6px 6px 0 0;
}
.mn::before {
	content: '';
	position: absolute;
	width: 6px;
	height: 120px;
	background-color: #07bef5;
	z-index: 4;
	border-radius: 6px 6px 0 0;
}
.sc::before {
	content: '';
	position: absolute;
	width: 3px;
	height: 150px;
	background-color: #fff;
	z-index: 5;
	border-radius: 6px 6px 0 0;
}

.tiles div {
	position: relative;
	display: block;
	font-weight: bolder;
	color: #190A05;
}
.container .tiles div span {
	width: 100%;
	height: 100%;
}
.container .tiles div:nth-child(1) {
	top: -60px;
}
.container .tiles div:nth-child(2) {
	top: -57px;
	left: 88px;
}
.container .tiles div:nth-child(3) {
	top: -15px;
	left: 155px;
}
.container .tiles div:nth-child(4) {
	top: 55px;
	left: 180px;
}
.container .tiles div:nth-child(5) {
	top: 120px;
	left: 155px;
}
.container .tiles div:nth-child(6) {
	top: 165px;
	left: 88px;
}
.container .tiles div:nth-child(7) {
	top: 165px;
}
.container .tiles div:nth-child(8) {
	top: 120px;
	right: 88px;
}
.container .tiles div:nth-child(9) {
	top: 35px;
	right: 155px;
}
.container .tiles div:nth-child(10) {
	top: -75px;
	right: 180px;
}
.container .tiles div:nth-child(11) {
	top: -185px;
	right: 155px;
}
.container .tiles div:nth-child(12) {
	top: -270px;
	right: 90px;
}
