/* reset */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; } body {line-height: 1; } ol, ul {list-style: none; } blockquote, q {quotes: none; } blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none; } /* remember to define focus styles! */ :focus {outline: 0; } /* remember to highlight inserts somehow! */ ins {text-decoration: none; } del {text-decoration: line-through; } /* tables still need 'cellspacing="0"' in the markup */ table {border-collapse: collapse; border-spacing: 0; }
@font-face { font-family: 'block'; src: url('../fonts/blocktregcon-webfont.woff2') format('woff2'), url('../fonts/blocktregcon-webfont.woff') format('woff'); font-weight: normal; font-style: normal; }



body,
html {
	overflow-y: hidden;
	height: auto;
}
body {
	background: #2f2d29;
	font-family: 'block';
	text-transform: uppercase;
	overflow-y: hidden;
	overflow-x: scroll;
	height: 100svh;
	position: relative;

}
body:after {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	background-image: url('overlay.png');
	pointer-events: none;
	z-index: 8;
	width: 100%;
	height: 100%;
	opacity: 0.8;

}
.time {
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	height: 100svh;
}

.time img {
	display: block;
	height: 100%;
	opacity: 0.6;
	pointer-events: none;
}
.time .timespace {
	position: absolute;
	left: 0;
	top: 16.25%;
	width: 100%;
	height: 78%;
	box-sizing: border-box;
	pointer-events: none;
}
.time .timeline {
	height: 2px;
	width: 100%;
	background: #ffc553;
	filter: drop-shadow(0px 0px 3px #ffc553);
	position: absolute;
	left: 0;
	animation-name: glitchy;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.current-time {
	position: fixed;
	right: 20px;
	bottom: 20px;
	color: #ffc553;
	font-size: 4em;
	line-height: 1;
	padding: 10px 15px;
	padding-bottom: 5px;
	border-radius: 5px;
	animation-name: glitchy;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  background: #2f2d29;
}
@keyframes glitchy {
  0% { opacity:1; }
  50% { opacity:0.2; }
  100% { opacity:1; }
}

.poweredby {
	position: absolute;
	right: 0;
	top: 24%;
	padding: 13px 11px;
	z-index: 8;
	background: #2f2d29;
	background: rgba(47,45,41,0.8);
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.poweredby img {
	width: 14px;
	display: block;
}



@media screen and (max-width: 900px) {


	body:after {
		display: none;
	}
	.time .tables {
		max-height: 100svh;
		height: 100svh; 
	}
	.current-time {
		font-size: 1em;
		padding: 10px;
		padding-bottom: 8px;
		bottom: auto;
		right: 15px;
		top: 15px;
	}


	/* cbx */
	.poweredby { 
		top: 17%;
	}
	.poweredby img {
		width: 10px;
		display: block;
	}


}



/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #2f2d29;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #423f3a;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #423f3a;
}