/*@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400");*/

.text-js {
	opacity: 0;
}

.cursor {
	display: block;
	position: absolute;
	height: 100%;
	top: 0;
	right: -5px;
	width: 2px;
	/* Change colour of Cursor Here */
	background-color: white;
	z-index: 1;
	-webkit-animation: flash 0.5s none infinite alternate;
	animation: flash 0.5s none infinite alternate;
}

@-webkit-keyframes flash {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes flash {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

* {
	margin: 0;
	padding: 0;
	boz-sizing: border-box;
	font-family: "Open Sans", sans-serif;
}

body {
	background: -webkit-linear-gradient(315deg, #00C4FF, #9D1BB2);
	background: linear-gradient(135deg, #00C4FF, #9D1BB2);
	height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.headline {
	margin: 20px;
	color: white;
	font-size: 32px;
	text-align: center;
}

.headline h1 {
	letter-spacing: 1.6px;
	font-weight: 300;
}

.twitterLink {
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 10px 15px;
	z-index: 3;
}

.twitterLink svg {
	width: 25px;
}

a {
	text-decoration: none;
	color: #999999;
}


.head_bg {
	width: 100%;
	top: 0;
	left: 0;
	height: 30px;
	background-color: #000;
	filter: alpha(opacity=70);
	opacity: 0.6;
	position: absolute;
	bottom: 0;
	z-index: 50;
}

.top {
	width: 100%;
	font-size: 16px;
	color: #999;
	margin: 0 auto;
	/*position: absolute;*/
	bottom: 0;
	margin-bottom: 16px;
	z-index: 30;
	text-align: center;
	height: 30px;
	line-height: 30px;
}

.top a {
	color: #999999
}

.top a:hover {
	color: #ffffff
}




.footer {
	width: 100%;
	font-size: 12px;
	color: #999;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	margin-bottom: 16px;
	z-index: 30;
	text-align: center;
	height: 20px;
	line-height: 20px;
}

.footer a {
	color: #999999
}

.footer a:hover {
	color: #ffffff
}

.footer_bg {
	width: 100%;
	left: 0;
	height: 50px;
	background-color: #000;
	filter: alpha(opacity=70);
	opacity: 0.6;
	position: absolute;
	bottom: 0;
	z-index: 30;
}