body {
	overflow: hidden;
    min-height: 100vh;
    background: #000;
}
section {
	height: 100vh;
    z-index: -1;
}
span {
    position: absolute;
    pointer-events: none;
    background: #fff;
    animation: animate 5s linear infinite;
    z-index: -1;
}
@keyframes animate {
	0%
	{
		transform: scale(0) translateY(0) rotate(0deg);
    	opacity: 0;
    }
    10% {
    	opacity: 1;
    }
	90% {
    	opacity: 1;
    }
    100%
    	{
    	transform: scale(1) translateY(-500%) rotate(360deg);
    	opacity: 0;
    }
}
* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
}
a {
    color: #735bc1;
    font-style: bold;
}
a:link {
    text-align: center;
	text-decoration: none;
	display: inline-block;
	font-style: monospace;
	color: aqua;
}
.button {
	background-color: #4CAF50;
	border: none;
	color: white;
	padding: 16px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	transition-duration: 0.4s;
	cursor: pointer;
	position: center;
}
.button1 {
	background-color: black; 
	color: white; 
	border: 2px solid #5ce0e6;
}
.button1:hover {
	background-color: white;
	color: black;
}

#main b{
	font-weight: 1300;
    color: white;
    z-index: 1;
}
#main h1{
    text-align: center;
    color: red;
    font-size: 400%;
    z-index: 1;
}
#main p{
    color: blue;
    text-align: center;
    font-size: 200%;
    font-family: Helvica, sans-serif;
    z-index: 1;
}

#main a{
	color: white;
}
