body {
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	background-image: url(idk.jpg);
	}
	
#container {
	width: 500px;
	height:500px;
	padding-top: 80px;
	margin: 0 auto;
}

.dot {
	width: 200px;
	height: 150px;
	margin: 40px auto;
	border-radius:50px;
	float: left;
	
}

.dot:nth-child(1) {
	background-color: #FF00FF;
	animation: left 1.1s infinite ease-in-out;
}

.dot:nth-child(2) {
	background-color: #1E90FF;
	animation: right 3.7s infinite ease-in-out;
}

.dot:nth-child(3) {
	background-color: #1E90FF;
	animation: left 1s infinite ease-in-out;
}

.dot:nth-child(4) {
	background-color: #FF00FF;
	animation: right 1s infinite ease-in-out;
}

.dot:nth-child(5) {
	background-color: #FF00FF;
	animation: left 1.2s infinite ease-in-out;
}

.dot:nth-child(6) {
	background-color: #1E90FF;
	animation: right 1s infinite ease-in-out;
}

.dot:nth-child(7) {
	background-color: #1E90FF;
	animation: left 1s infinite ease-in-out;
}

.dot:nth-child(8) {
	background-color: #FF00FF;
	animation: right 1.2s infinite ease-in-out;
}

.dot:nth-child(9) {
	background-color: #FF00FF;
	animation: left 9s infinite ease-in-out;
}

.dot:nth-child(10) {
	background-color: #1E90FF;
	animation: right 1s infinite ease-in-out;
}




@keyframes right {
	0% { transform: translate(-30px);}
	50% {transform: translate(30px);}
	100% {transform: translate(-30px);}
}


@keyframes left {
	0% { transform: translate(30px);}
	50% {transform: translate(-30px);}
	100% {transform: translate(30px);}
}


