html, body, .container {
	height: 100%;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.clock {
	position:relative;
	width: 138px;
	height: 138px;
	background: url(images/clock_face.png);

}

.clock:after {
	position:absolute;
	content: '';
	background:#F00;
	width: 8px;
	height: 8px;
	top: 49%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	border-radius: 50%;
}

.hands {
	position:absolute;
	top: -2px;
	left: 0px;
	width: 138px;
	height: 138px;
}
