/*================BODY====*/
body{
    width: 100%;
    height: 100%;
    background: url(images/space.png);
    overflow: hidden;
}
/*================ H1====*/
h1{
    font-family: sans-serif;
    font-weight: 100;
    font-size: 40px;
    text-shadow: 0 0 10px #000000;
    color: #ffffff
}
/*=================SUN STYLING===*/
#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: 1000px;
    animation: spin-right 8s linear infinite;
    -webkit-animation: spin-right 8s linear infinite;
}
/*================== NEPTUNE ORBIT===*/
#neptune-orbit{
    position: absolute;
    width: 1204px;
    height: 1204px;
    bottom: -512px;
    left: 50%;
    margin-left: -602px;
    border: 1px dotted #ffffff;
    border-radius: 50%;
    animation: spin-left 14s linear infinite;
    -webkid-animation: spin-left 14s linear infinite;
}
#neptune-lable{
    bottom: 692px;
}

/*==================URANUS====*/
#uranus{
    width: 66px;
    height: 66px;
    margin: 120px;
    z-index: 1000px;
    animation: spin-right 8s linear infinite;
    -webkit-animation: spin-right 8s linear infinite;
}
/*================== URANUS ORBIT===*/
#uranus-orbit{
    position: absolute;
    width: 1062px;
    height: 1062px;
    bottom: -441px;
    left: 50%;
    margin-left: -531px;
    border: 1px dotted #ffffff;
    border-radius: 50%;
    animation: spin-left 15s linear infinite;
    -webkid-animation: spin-left 15s linear infinite;
}
#uranus-lable{
    bottom: 620px;
}


/*==================SATURN====*/
#saturn{
    width: 110px;
    margin: 85px;
    z-index: 1000px;
    animation: spin-right 13s linear infinite;
    -webkit-animation: spin-right 13s linear infinite;
}
/*================== SATURN ORBIT===*/
#saturn-orbit{
    position: absolute;
    width: 876px;
    height: 876px;
    bottom: -348px;
    left: 50%;
    margin-left: -438px;
    border: 1px dotted #ffffff;
    border-radius: 50%;
    animation: spin-left 13s linear infinite;
    -webkid-animation: spin-left 13s linear infinite;
}
#saturn-lable{
    bottom: 527px;
}


/*==================JUPITER====*/
#jupiter{
    width: 100px;
    height: 100px;
    margin: 45px;
    z-index: 1000px;
    animation: spin-right 10s linear infinite;
    -webkit-animation: spin-right 10s linear infinite;
}
/*================== JUPITER ORBIT===*/
#jupiter-orbit{
    position: absolute;
    width: 656px;
    height: 656px;
    bottom: -238px;
    left: 50%;
    margin-left: -328px;
    border: 1px dotted #ffffff;
    border-radius: 50%;
    animation: spin-left 10s linear infinite;
    -webkid-animation: spin-left 10s linear infinite;
}
#jupiter-lable{
    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-orbit {
    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-lable{
    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-orbit {
    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-lable{
    bottom: 294px;
}

/*==================== VENUS ====================*/

#venus {
    width: 50px;
    height: 50px;
    margin: 16px;
    z-index: 1000;
}

#venus-orbit {
    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-lable{
    bottom: 239px;
}

/*==================== MERCURY ====================*/

#mercury {
    width: 40px;
    height: 40px;
    margin: 8px;
    z-index: 1000;
}


#mercury-orbit {
    position: absolute;
    z-index: 1;
    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-lable{
    bottom: 189px;
}



/*================LABLE BOX====*/
.lable-box{
    position: absolute;
    width: 150px;
    left: 50%;
    margin-left: -75px;
    text-align: center;
    color: #ffffff;
    font-weight: 100;
    font-family: sans-serif;
}
.lable-box a{
    text-decoration: none;
    padding: 0px;
    margin: opx
}
.lable-box a:visited{
    color: white;
}
/*================ANIMATION====*/
@keyframes spin-left{
    100%{
        transform: rotate(-360deg);
        -webkid-animation: rotate(-360deg);
    }
}

@keyframes spin-right{
    100%{
        transform: rotate(360deg);
        -webkid-animation: rotate(360deg);
    }
}