body, html {
margin:0;
overflow:hidden;
background-size:cover;
background-image:url(2.jpg);
background-attachment:fixed;
}

two {display:none;}

sunlight {
	height:300vh;
	width:100vw;
	display:block;
	position:absolute;
	left:0vw;
	animation:sunrise-sunset 15s linear infinite;
	background: repeating-linear-gradient(
		5deg,
		transparent, 
		transparent 5px, 
		orange 5px, 
		orange 10px
		);
}

moon {
    position: absolute;
    top: 0vh;
    left: 0vw;
    background: white;
    width: 18px;
    height: 18px;
    border-radius: 20px;
    transition-duration:2s;
    opacity:0.7;
}

@keyframes sunrise-sunset {
	100% {top:-200vh;opacity:1;}
	50% {opacity:0.1;}
	0% {top:0vh;opacity:1}
}

/* POEM INSTRUCTIONS */

opendevtools {
	position:absolute;
	z-index:99999;
	top:0;
	right:0;
	margin:5vh 5vw;
	padding:2vh 2vw;
	font-family:consolas;
	letter-spacing:0.1em;
	font-size:0.65em;
	color:white;
	background:blue;
	display:block;
	cursor:pointer;
	opacity:0;
	transition:.4s ease-in-out;
}

opendevtools.show {
	opacity:0.99;
	transition:.2s ease-in-out;
}