* {
	padding:0px;
	margin:0px;
}
body, html {
	width:100%;
	min-height:100%;
}
body {
	background-color:#000;
	width:100vw;
	height:100vh;
	overflow:hidden;
}
#screen {
	width:100vw;
	height:100vh;
	background-image:url(i/noise.gif);
	background-repeat:repeat;
	transform-origin:center center;
	transition:transform 0.2s ease;
	position:absolute;
	top:0px;
	left:0px;
}
#screen.off {
	transform:scale(1,0);
}
#power {
	display:block;
	position:absolute;
	right:50px;
	bottom:50px;
}
#s {
	width:30vw;
	height:auto;
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	opacity:0.03;
}
#bkg {
	position:absolute;
	width:100vw;
	height:100%;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	object-fit:cover;
	object-position:center;
}
#bdl {
	width:80%;
	max-width:1200px;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}