
body {
	background: black;
	    margin: 0px;
    overflow: hidden;
}

.timer-wrapper {
	width: 500px;
	height: 500px;
	display: none;
position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
}

.timer {
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

p{
	color: white;
	margin: 0;
	font-family: 'Roboto Mono', monospace;

}

.time-box {
	height: auto;
	width: 100%;
	position:relative;
	text-align: center;
}

.date-box {
	background: transparent;
	border: 2px white solid;
	height: 115px;
	overflow: none;
	top: 0px;
	font-size: 32px;
	margin: 10px 8px;
	width: 105px;
	position: relative;
	text-align: center;
	display: inline-block;
}

.intervals {
	position: relative;
	border-bottom: 2px white solid;
	height: 70px;
line-height: 70px;
}

.labels {
    position: relative;
    font-size: 13px;
    height: 45px;
    line-height: 45px;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    background: white;
    color: black;
    letter-spacing: 2px;
}



.hover-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #fff;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  width: 100%;
}
.hover-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hover-in:hover, .hover-in:focus, .hover-in:active {
  color: black;
}
.hover-in:hover:before, .hover-in:focus:before, .hover-in:active:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
