#clock {
	position: absolute;
	width: 100%;
	height: 100%;
}
#clock #backgr {
	position: absolute;
	top: -5%;
	left: -5%;
	width: 110%;
	height: 110%;
	margin: auto;
	background: #fff;
	background-size: cover;
    background-position: center center;
    -webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
}


#clock div.clockrotate {
	position: absolute;
	top: -30vw;
	left: 0;
	width: 100vw;
	height: 100vw;
	background-image: url(images/clock.png);
	background-image: url(images/clock.svg);
	background-size: 95% 95%;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0.5;
	-webkit-animation:spin 36s linear infinite;
    -moz-animation:spin 36s linear infinite;
    animation:spin 36s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

@media screen and (orientation:portrait) {
	/* Portrait styles here */
	#clock div.clockrotate {
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vw;
	}
}

#clock div.clock {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#clock div.clock h1 {
	position: absolute;
	top: 1vw;
	left: 25vw;
	width: 50vw;
	height: 30vw;
	padding: 19vw 0 1vw;
	margin: 0;
	font-size: 1000%;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	text-align: center;
	background: #fff;
	border-radius: 50%;
	display: none;
}

@media screen and (max-height: 300px) { 
	/* LED Wall styles here */
	#clock div.clock h1 {
		height: 25vw;
		padding: 12.5vw 0;
	}
}
@media screen and (orientation:portrait) {
	/* Portrait styles here */
	#clock div.clock h1 {
		top: 25vw;
		height: 30vw;
		padding: 19vw 0 1vw;
		transform: scale(1.25);
		transform-origin: center center;
	}
}
#clock div.clock h2 {
	position: absolute;
	bottom: 0;
	left: 20%;
	width: 54%;
	height: auto;
	padding: 3%;
	margin: 0;
	background: #999;
	border-radius: 3vw 3vw 0 0;
	
	color: #fff;
	font-size: 400%;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	text-align: center;
	display: none;
}