body {
	font-family: Consolas, monaco, monospace;
	margin: 0 auto;
	background-color: #000;
	color: #fff;
	font-size: 80%;
	overflow: hidden;
	}
	
a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dashed #fff;
	display: inline;
	}
	
a:hover {
	border-bottom: 1px solid #fff;
	}
	
#center {
  margin: auto;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  height: 120px;
  width: 370px;
	z-index: 200;
}

#center_text {
	background-color: #000;
	width: 200px;
	height: 110px;
	float: right;
	padding: 5px 0 5px 10px;
	}

#rainbow {
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  height: 3000px;
  width: 370px;
  background: red; /* not working, let's see some red */
      background: linear-gradient(
        rgba(255, 0, 0, 1) 0%,
        rgba(255, 255, 0, 1) 15%,
        rgba(0, 255, 0, 1) 30%,
        rgba(0, 255, 255, 1) 50%,
        rgba(0, 0, 255, 1) 65%,
        rgba(255, 0, 255, 1) 80%,
        rgba(255, 0, 0, 1) 100%);
    background: -moz-linear-gradient( top ,
        rgba(255, 0, 0, 1) 0%,
        rgba(255, 255, 0, 1) 15%,
        rgba(0, 255, 0, 1) 30%,
        rgba(0, 255, 255, 1) 50%,
        rgba(0, 0, 255, 1) 65%,
        rgba(255, 0, 255, 1) 80%,
        rgba(255, 0, 0, 1) 100%);
    background: -webkit-gradient(linear,  left top,  left bottom, 
        color-stop(0%, rgba(255, 0, 0, 1)), 
        color-stop(15%, rgba(255, 255, 0, 1)),
        color-stop(30%, rgba(0, 255, 0, 1)),
        color-stop(50%, rgba(0, 255, 255, 1)),
        color-stop(65%, rgba(0, 0, 255, 1)),
        color-stop(80%, rgba(255, 0, 255, 1)),
        color-stop(100%, rgba(255, 0, 0, 1)));
}

#raincover_top {
	left: 0; right: 0;
	margin: auto;
	height: calc(50% - 60px);
	width: 370px;
	background: #000;
	z-index: 10;
	position: fixed;
	}
	
#raincover_bottom {
	left: 0; right: 0; bottom: 0;
	margin: auto;
	height: calc(50% - 60px);
	width: 455px;
	background: #000;
	z-index: 10;
	position: fixed;
	}
	
#bottom {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 50px;
	width: 50px;
	z-index: 11;
	}