@font-face {
  font-family: SinsGold;
  src: url(../font/SinsGold.woff);
}

html, body { height: 100%;}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
  margin: 0;
  background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(53,51,152,1) 100%); 
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
}

#sky {
 white-space: pre-wrap; /* css-3 */
 word-wrap: break-word; /* IE 5.5+ */
 width: 80%;
 line-height: 2em;
}

#machine {
	color: gray;
	margin-top: 3em;
}

#machine,
#machine pre {
	font-size: 12pt;
	line-height: 1.1em;
}

#machine pre { margin: 0 0; }

#machine b { display: inline-block; }

#knob {
	position: relative;
	font-weight: bold;
	top: -5em;
	cursor: pointer;
	color: black;
}

@keyframes rotate {
	0%	 { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

#knob.anim { animation: rotate 2s 2; }

#machine a {
	display: block;
	position: relative;
	top: -3.5em;
	line-height: 0;
}

p {
	color: white;
	font-family: SinsGold;
	font-size: 2em;
}