body {
	margin: 0;
	font: normal 75% Arial, Helvetica, sans-serif;
}
canvas {
	display: block;
	vertical-align: bottom;
}
#particles-js {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgb(20,0,36);
	background: linear-gradient(0deg, rgba(20,0,36,1) 0%, rgba(9,83,121,1) 100%); 
}

#center {
	position: absolute;
    display: block;
    height: 100px;
	top: 40%;
}
#center h2{
	position: fixed;
    color: white;
    font-size: 60px;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(125, 125, 125, 1);
	width: 100%;
	
	-webkit-user-select: none;      
	-moz-user-select: none; 
	-ms-user-select: none;
	user-select: none; 
}
#center p{
	position: fixed;
    color: white;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(125, 125, 125, 1);
	width: 100%;
	margin-top: 80px;
	
	-webkit-user-select: none;      
	-moz-user-select: none; 
	-ms-user-select: none;
	user-select: none; 
}

.blink {
  animation: blinker 1s infinite;
  display:inline-block
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

#footer {
    display: block;
    position: absolute;
    height: 100px;
	top: 94%;
	text-align: center;
	width: 100%;
}