*{
	margin:0;
	padding:0;
}

body{
	background-color: black;
	overflow: none;
	float: left;
	width:100vw;
 	height:100vh
}

header{
	display:none;

 --animation-delay: 5;
 --duration: 800ms;
 --iterations: infinite;
}

section{
	width: 150px;
	height: 150px;
	overflow: none
}

.one{
	margin-left:2vw;
	margin-top:70vh;
	animation-delay: 2s;
}

.two{
	margin-left:15vw;
	margin-top:-30vh;
}

.three{
	margin-left: 30vw;
	margin-top:-20vh;
}

.four{
	margin-left:55vw;
	margin-top: -25vh;
}

.five{
	margin-left: 70vw;
	margin-top: -40vh;
}

.six{
	margin-left:85vw;
	margin-top:-30vh;
}






.column-2{
	margin-left: 400px;
	margin-top: -3500px;


}

.column-3{
	margin-left: 700px;
	margin-top: 20px;

}

.column-4{
	margin-left: 1000px;
	margin-top: -300px;

}

.column-5{
	margin-left: 1300px;
	margin-top: 0px;
}

.circle {
  border-radius: 50%;
  background-color: white;
  width: 300px;
  height: 300px;
  position: absolute;
  opacity: 0;
   animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);

}


@keyframes scaleIn {
  from {
    transform: scale(.5, .5);
    opacity: .5;
  }
  to {
    transform: scale(2.5, 2.5);
    opacity: 0;
  }
}
