Try using top / margin-top properties of css.
#circles{
display: inline-block;
float: left;
width: 70%;
top: someValue px;
}
or
#circles{
display: inline-block;
float: left;
width: 70%;
margin-top: someValue px;
}
solved How do I move my div upp with css to center it [closed]