*{
	margin: 0;
	padding: 0;
	box-sizing:border-box
}

body {
	overflow: hidden; /* Hide scrollbars */
}


html {
    font-family: monospace;
    font-size: 100%;
	color: #ffffff;
	text-shadow: 1px 1px 1px black, -1px -1px 1px black, 1px -1px 1px black, -1px 1px 1px black;
}


@keyframes blinker {
	50% {
	  opacity: 0.25;
	}
}


#drawabovejs {
	animation: blinker 2s linear infinite;
	position: absolute;
	top: 45%;
	width: 45%;
	text-align: right;
	z-index: 100;
	display:block;
    color: rgb(255, 255, 255);
}


@media screen and (min-width: 800px){

#logoabovejs {
	position: absolute;
	top: 25px;
	left: 25px;
	width: 120px;
	text-align: right;
	z-index: 100;
	display:block;
    color: rgb(255, 255, 255);
}

#contactusabovejs {
	position: absolute;
	top: 25px;
	left: 150px;
	text-align: right;
	z-index: 100;
	display:block;
    color: rgb(255, 255, 255);
}
}


@media screen and (max-width: 800px){

	#logoabovejs {
		position: absolute;
		bottom: 25px;
		left: 25px;
		width: 120px;
		text-align: right;
		z-index: 100;
		display:block;
		color: rgb(255, 255, 255);
	}
	
	#contactusabovejs {
		position: absolute;
		bottom: 25px;
		left: 150px;
		text-align: right;
		z-index: 100;
		display:block;
		color: rgb(255, 255, 255);
	}
	}




a:link {
	color: rgb(255, 255, 255);
  }
  
  /* visited link */
  a:visited {
	color: rgb(255, 255, 255);
  }
  
  /* mouse over link */
  a:hover {
	color: rgb(255, 255, 255);
  }
  
  /* selected link */
  a:active {
	color: rgb(255, 255, 255);
  }