.clock {
	width: 100px;
	height: 100px;
	border: 8px solid white;
	margin: 0 auto;
	margin-bottom: 20px;
	margin-top: 10px;
	border-radius: 100%;
	position: relative;
	padding: 11px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), inset 0 0 4px rgba(0,0,0,0.2), 0 0 5px rgba(0, 0, 0, 0.2);
	background: #515962;
	flex-shrink: 0;
}


.clock-face {
	position: relative;
	width: 100%;
	height: 100%;
	/* transform: translateY(-3px); */
}

.hand {
	width: 50%;
	height: 3px;
	background: white;
	position: absolute;
	top: 50%;
	transform-origin: 100%;
	transform: rotate(90deg);
	transition: 0.3s all;
	transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}

.hand.hand-hour {
    width: 29%;
}

.hand.hand-seconds {
    background: #ea010f;
    height: 1px;
}