body {
	margin: 0;
	padding: 0;
	background-image: url(gam.jpg);
	}
	
#container {
	width: 500px;
	height: 500px;
	padding-top: 80px;
	margin: 0 auto;
	}
	
.dot {
	width: 20px;
	height: 20px;
	margin: 30px auto;
	border-radius: 100px;
	}
	
.dot:nth-child(1) {
	background-color: #ff66ff;
	animation: left .1s infinite ease-in-out;
	}
	
.dot:nth-child(2) {
	background-color: #ff0066;
	animation: right .2s infinite ease-in-out;
	}
	
.dot:nth-child(3) {
	background-color: #ff4dff;
	animation: left .1s infinite ease-in-out;
	}
	
.dot:nth-child(4) {
	background-color: #ff0000;
	animation: right .2s infinite ease-in-out;
	}
	
.dot:nth-child(5) {
	background-color: #ff33cc;
	animation: left .1s infinite ease-in-out;
	}
	
.dot:nth-child(6) {
	background-color: #ff0000;
	animation: left .2s infinite ease-in-out;
	}

.dot:nth-child(7) {
	background-color: #ff0066;
	animation: left .1s infinite ease-in-out;
	}	
	
@keyframes right {
	o% { transform: translate(-75px)}
	50% { transform: translate(75px)}
	100% {transform: translate(-75px) }
}

@keyframes left {
	o% { transform: translate(75px)}
	50% { transform: translate(-75px)}
	100% {transform: translate(75px) }
}
	