body {
background-color: transparent;
color: lightcyan;
list-style: disc inside url("planet.png");
}

.drag {
    cursor: grab;
}

h1 {
    color: rgba(255, 255, 255, 0.499);
    animation: pulse 2s infinite alternate ease-out;
}

h1:hover {
    color: white
}
ul {
   color: rgba(102, 114, 110, 0.304);
   animation: move 100s infinite alternate ease-out;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

p:hover {
    color: azure;
}

ul:hover {
    color: azure;
}

a:hover{
    color:white;
}
.drag {
    position: absolute;
    z-index: 9;
    background-color: transparent;
    text-align: center;
  }
.mydivheader {
    padding: 10px;
    cursor: move;
    z-index: 10;
    background-color: transparent;
    color: #fff;
  }
.shine {
   animation: spin 10s infinite linear; 
}
a {
color:darkslateblue
}

.ufo {
    animation: move 20s infinite;
}

.margin-right {
    margin-right: 150px;
}

@keyframes spin {
    0% {
        transform:rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes move {
    0% {
        transform:translateX(100vw);
        
    }
    100% {
        transform:translateX(-100vw)
    }
}

@keyframes pulse {
    0% {
        color:honeydew;
        transform:scale(1);
        opacity:1;
    }
    100% {
        color:rgb(114, 208, 232);
        transform:scale(1.1);
        opacity:.7;
    }
}