*, *::after, *::before {
	box-sizing: border-box;
	font-family: Gotham Rounded, sans-serif;
	font-weight: bold;
}

body {
	background: linear-gradient(to top, #e5fc91, #eeffc7);
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	overflow: hidden;
}

.clock {
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	position: relative;
	border: black 5px solid;
	top: -50px;
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.7);
}

.clock .number {
	--rotation: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	transform: rotate(var(--rotation));
	color: black;
	font-size: 1.5rem;
}

.clock .number1 {
	--rotation: 30deg;
}

.clock .number2 {
	--rotation: 60deg;
}

.clock .number3 {
	--rotation: 90deg;
}

.clock .number4 {
	--rotation: 120deg;
}

.clock .number5 {
	--rotation: 150deg;
}

.clock .number6 {
	--rotation: 180deg;
}

.clock .number7 {
	--rotation: 210deg;
}

.clock .number8 {
	--rotation: 240deg;
}

.clock .number9 {
	--rotation: 270deg;
}

.clock .number10 {
	--rotation: 300deg;
}

.clock .number11 {
	--rotation: 330deg;
}

.clock .hand {
	--rotation: 0;
	position: absolute;
	bottom: 50%;
	left: 50%;
	background-color: black;
	z-index: 10;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	transform-origin: bottom center;
	transform: translateX(-50%) rotate(calc(var(--rotation) * 1deg));
}

.clock .hand.second {
	width: 2px;
	height: 48%;
	background-color: red;
}

.clock .hand.minute {
	width: 6px;
	height: 41%;
	background-color: black;
}

.clock .hand.hour {
	width: 8px;
	height: 30%;
	background-color: black;
}

.clock::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: black;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 11;
}

.clock .brand {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 60px;
	text-align: center;
	color: rgba(90, 109, 37, 0.8);
	font-family: 'Kaushan Script';
	font-size: 1.5rem;
	text-shadow: 0 0 5px rgba(71, 71, 71, 0.5);
}

#date {
	position: absolute;
	top: 150px;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-shadow: 2px 2px 3px rgba(71, 71, 71, 0.5);
}