body { 
    background-color: black;
    background-repeat: no-repeat;
    color: white;
}
a {
    color: white;
}
p {
    background-color: black;

}
.image {
    position: absolute;
    top: 118px;
    left: 210px;
    -webkit-animation:spin 30s linear infinite;
    -moz-animation:spin 30s linear infinite;
    animation:spin 30s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}


/*phones*/
@media screen and (max-width: 425px) {
.image {
    height: 75px;
    width: 75px;
    top: 90px;
    left: 154px;
}
.mainImg {
    width: 450px;
}
.orbitImg {
    width: 425px;
}
}

/*tablets*/
@media screen and (max-width: 1000px) and (min-width: 425px) {
    .image {
        height: 75px;
        width: 75px;
        top: 90px;
        left: 154px;
    }
    .mainImg {
        width: 450px;
    }
    .orbitImg {
        width: 967px;
    }
    }

    /*laptops*/
    @media screen and (max-width: 1024px) and (min-width: 1000px){
        .image {
            height: 75px;
            width: 75px;
            top: 90px;
            left: 154px;
        }
        .mainImg {
            width: 450px;
        }
        .orbitImg {
            width: 1000px;
        }
        }
/*Big Laptop*/
@media screen and (max-width: 1440px) and (min-width: 1024px) {
    .orbitImg {
        width: 1440px;
    }
    }