body {
    height: 100vh;
    background-color: rgb(94, 0, 94);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
#moveship {
    position: absolute;
    width: 250px;
    height: 500px;
    animation: Hover 8s infinite;
}

    .capsule{
    position: absolute;
    border: 1px white solid;
    margin: 0;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Adjust to truly center */
    display: inline-block;
    height: 360px;
    width: 200px;
    background-color: #ffffff;
    border-radius: 100px;

    }
.ufo {
    position: absolute;
    height: 100px;
    width: 200px;
    bottom: 50px;
    border: 1px #ac6b17 solid  ;
    margin: auto;
    top: 86%;
    left: 50%;
    transform: translate(-50%, -50%); /* Adjust to truly center */
    display: inline-block;
    background-color: #ac6b17;
    border-radius: 0 0 100px 100px;
    z-index: 2;
    overflow: hidden;
    }
.ufotoo {
    position: absolute;
    height: 30px;
    width: 202px;
    background-color: yellow;
    top: 66%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.alienbody {
    position: absolute;
    width: 140px;
    height: 280px;
    background-color: green;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 200px 200px 0 0;
    z-index: 2;
    overflow: hidden;

    }
.eyewhite {
    position: absolute;
    height: 80px;
    width: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.pupil {
    position: absolute;
    width: 40px;
    height: 20px;
    background-color: rgb(255, 255, 255);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border: 8px solid rgb(0, 0, 0);
    border-bottom: 0;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
}
.mouth {
    position: absolute;
    height: 22px;
    width: 40px;
    margin: auto;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%); /* Adjust to truly center */
    display: inline-block;
    background-color: #0d4100;
    border-radius: 0 0 100px 100px;
    z-index: 2;
    overflow: hidden;
}
    .ear1 {
    position: absolute;
    width: 40px;
    height: 20px;
    background-color: rgb(255, 255, 255);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border: 8px solid green;
    border-bottom: 0;
    top: 30%;
    left: 72%;
    transform: translate(-50%, -50%) rotate(-35deg);
    z-index: 1;
    }
    .ear2 {
    position: absolute;
    width: 40px;
    height: 20px;
    background-color: rgb(255, 255, 255);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border: 8px solid green;
    border-bottom: 0;
    top: 30%;
    left: 28%;
    transform: translate(-50%, -50%) rotate(35deg);
    z-index: 1;

    }
    .landgear1 {
    position: absolute;
    width: 40px;
    height: 28px;
    background-color: rgb(94, 0, 94);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border: 8px solid #ac6b17;
    border-bottom: 0;
    top: 82%;
    left: 75%;
    transform: translate(-50%, -50%);
    z-index: 1;
    }
    .landgear2 {
    position: absolute;
    width: 40px;
    height: 28px;
    background-color:  rgb(94, 0, 94);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border: 8px solid #ac6b17;;
    border-bottom: 0;
    top: 82%;
    left: 25%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
    .droop1{
    position: absolute;
    height: 25px;
    width: 25px;
    background-color: green;
    border-radius: 50%;
    top: 28%;
    left: 83%;
    transform: translate(-50%, -50%);
    z-index: 999;
    }
    .droop2{
    position: absolute;
    height: 25px;
    width: 25px;
    background-color: green;
    border-radius: 50%;
    top: 28%;
    left: 17%;
    transform: translate(-50%, -50%);
    z-index: 999;
    }
/*@keyframes Hover {
    0% {
        transform: translateX(0px);
        transform: translateY(-10px);
    }
    50% {
        transform: translateX(0px);
        transform: translateY(10px);
    }
    100% {
        transform: translateX(0px);
        transform: translateY(-10px);
    }
} 
@keyframes Hover {
    0% {
        transform: translateY(-5%);
    }
    50% {
        transform: translateY(5%);
    }
    100% {
        transform: translateY(-5%);
    }
}*/
@keyframes Hover {
    0% {
        top: 20%;
    }
    50% {
        top: 25%;
    }
    100% {
       top: 20%;
    }
}