*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-family: sans-serif;*/
	/*font-family: 'LED Digital 7', sans-serif;*/
	font-family: 'Digital-7 Mono', sans-serif;
}

html, body{
	display: grid;
	height: 100%;
	place-items: center;
	background: #fff;
}
.wrapper{
	width: 360px;
	height: 100px;
	/*background: red;*/
	background: linear-gradient(135deg, #480e6e 25%, #b91313 50%, #5d5d 100%);
	border-radius: 10px;

}

.wrapper .display{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #000;
	border-radius: 6px;
	width: 345px;
	height: 85px;
	text-align: center;
	z-index: 99;
}

.wrapper .display #time{
	line-height: 85px;
	color: lime;
	font-size: 75px;
	font-weight: 600;
	letter-spacing: 1px;
}