body{
    width: 100%;
    height: 100%;
    background: url('images/space.png');
    overflow: hidden;
}
h1{
    font-family: sans-serif;
    font-weight: 100;
    font-size: 40px;
    text-shadow: 0 0 10px #000000;
    color: #ffffff;
}
/*=================== Label Box ================*/
.label-box{
    position: absolute;
    width: 150px;
    left: 50%;
    margin-left: -75px;
    text-align: center;
    color: white;
    font-weight: 200;
    font-family: cursive;
    text-decoration:none;
    
}
.label-box a{
    text-decoration: none;
    color: white;
    padding: 0;
    margin: 0;
}
.label-box a:visited{
    color: white;
}
/*=================== SUN ================*/

#sun{
    position: absolute;
    z-index: 1000;
    width: 160px;
    bottom: 10px;
    left: 50%;
    margin-left: -80px;
}
/*=================== Neptune ================*/
#neptune{
    width: 66px;
    height: 66px;
    margin: 143px;
    z-index: 1000;
    animation: spin-right 3s linear infinite;
    -webkit-animation: spin-right 3s linear infinite;
}
#neptune-orbit{
    position: absolute;
    width: 1204px;
    height: 1204px;
    bottom: -512px;
    left: 50%;
    margin-left: -602px;
    border: 1px dotted white;
    border-radius: 50%; 
    animation: spin-left 14s linear infinite;
    -webkit-animation: spin-left 14s linear infinite;
}
#neptune-label{
    bottom: 692px;
}
/*=================== Uranus ================*/
#uranus{
    width: 66px;
    height: 66px;
    margin: 120px;
    z-index: 1000;
    animation: spin-right 3s linear infinite;
    -webkit-animation: spin-right 3s linear infinite;
}
#uranus-orbits{
    position: absolute;
    width: 1062px;
    height: 1062px;
    bottom: -441px;
    left: 50%;
    margin-left: -531px;
    border: 1px dotted white;
    border-radius: 50%; 
    animation: spin-left 15s linear infinite;
    -webkit-animation: spin-left 15s linear infinite;
}
#uranus-label{
    bottom: 620px;
}
/*=================== Saturn ================*/
#saturn{
    width: 110px;
    margin: 85px;
    z-index: 1000;
    animation: spin-right 13s linear infinite;
    -webkit-animation: spin-right 13s linear infinite;
}
#saturn-orbits{
    position: absolute;
    width: 876px;
    height: 876px;
    bottom: -348px;
    left: 50%;
    margin-left: -438px;
    border: 1px dotted white;
    border-radius: 50%; 
    animation: spin-left 13s linear infinite;
    -webkit-animation: spin-left 13s linear infinite;
}
#saturn-label{
    bottom: 527px;
}
/*=================== jupiter ================*/
#jupiter{
    width: 100px;
    height: 100px;
    margin: 45px;
    z-index: 1000;
    animation: spin-right 10s linear infinite;
    -webkit-animation: spin-right 10s linear infinite;
}
#jupiter-orbits{
    position: absolute;
    width: 656px;
    height: 656px;
    bottom: -238px;
    left: 50%;
    margin-left: -328px;
    border: 1px dotted white;
    border-radius: 50%; 
    animation: spin-left 10s linear infinite;
    -webkit-animation: spin-left 10s linear infinite;
}
#jupiter-label{
    bottom: 417px;
}
/*=================== mars ================*/
#mars{
    width: 38px;
    height: 38px;
    margin: 55px;
    z-index: 1000;
    animation: spin-right 3s linear infinite;
    -webkit-animation: spin-right 3s linear infinite;
}
#mars-orbits{
    position: absolute;
    width: 508px;
    height: 508px;
    bottom: -164px;
    left: 50%;
    margin-left: -254px;
    border: 1px dotted white;
    border-radius: 50%; 
    animation: spin-left 4s linear infinite;
    -webkit-animation: spin-left 4s linear infinite;
}
#mars-label{
    bottom: 343px;
}

/*=================== Earth ================*/
#earth{
    width: 50px;
    height: 50px;
    margin: 36px;
    z-index: 1000;
    animation: spin-right 3s linear infinite;
    -webkit-animation: spin-right 3s linear infinite;
}
#earth-orbits{
    position: absolute;
    width: 410px;
    height: 410px;
    bottom: -115px;
    left: 50%;
    margin-left: -205px;
    border: 1px dotted white;
    border-radius: 50%; 
    animation: spin-left 5s linear infinite;
    -webkit-animation: spin-left 5s linear infinite;
}
#earth-label{
    bottom: 294px;
}
/*=================== venus ================*/
#venus{
    width: 50px;
    height: 50px;
    margin: 16px;
    z-index: 1000;
    animation: spin-right 3s linear infinite;
    -webkit-animation: spin-right 3s linear infinite;
}
#venus-orbits{
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: 50%;
    margin-left: -150px;
    border: 1px dotted white;
    border-radius: 50%; 
    animation: spin-left 4s linear infinite;
    -webkit-animation: spin-left 4s linear infinite;
}
#venus-label{
    bottom: 239px;
}
/*=================== mercury ================*/
#mercury{
    width: 40px;
    height: 40px;
    margin: 8px;
    z-index: 1000;
    animation: spin-right 3s linear infinite;
    -webkit-animation: spin-right 3s linear infinite;
}
#mercury-orbits{
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -10px;
    left: 50%;
    margin-left: -100px;
    border: 1px dotted white;
    border-radius: 50%; 
    animation: spin-left 2s linear infinite;
    -webkit-animation: spin-left 2s linear infinite;
}
#mercury-label{
    bottom: 188px;
}
/*=================== SUN ================*/
#container{
    transform: scale(0.8 ,0.8) translate(0, 700px);
}


/*=================== Animation ================*/
@keyframes spin-left{
    100%{
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}
@keyframes spin-right{
    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}