html {
	background-color: #000000;
}
#container {
  position: relative;
  width: 10000px;
  height: 10000px;
  background-color: #000;
	margin: 0 auto;
	overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
	transform: translate(-50%,-50%);
}

.particle.small {
  width: 5px;
  height: 5px;
  background-color: #ffffff; /* 月のような色 */
}

.particle.medium {
  width: 15px;
  height: 15px;
  background-color: #2a7cff; /* 地球のような色 */
}

.particle.large {
  width: 60px;
  height: 60px;
  background-color: #ffde00; /* 太陽のような色 */
	top: 50%;
	left: 50%;
}
