body{
    background-color: rgb(50 , 1, 50);
}


.ufo{
    position: absolute;
    animation: updown infinite ease-in-out 3s;
}

#glas{
    background-color: #e0ffff;
    position: absolute;
    height: 400px;
    width: 200px;
    border-radius: 100px;
    left: 600px;
    top: 100px;
}


#rand1{
    background-color: gold;
    height: 200px; 
    width: 200px;
    position: absolute;
    left: 600px;
    top: 300px;
    border-radius: 100px;
    clip-path: inset(50% 0 0 0);
}

#rand2{
    background-color: khaki;
    width: 200px;
    height: 25px;
    position: absolute;
    top: 375px;
    left: 600px;
}


#pootL{
    color: gold;
    font-size: 150px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    clip-path: inset(0 0 50% 50%);
    top: 410px;
    left: 700px;
    position: absolute;
}
 
#pootR{
    color: gold;
    font-size: 150px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    clip-path: inset(0 50% 50% 0);
    top: 410px;
    left: 600px;
    position: absolute;
}


#allien1{
    background-color: rgb(10, 201, 67);
    position: absolute;
    top: 165px;
    left: 625px;
    height: 300px;
    width: 150px;
    border-radius: 100px;
    clip-path: inset(0 0 30% 0);
}

#oor1{
    color:rgb(10, 201, 67) ;
    font-size: 150px;
    font-family: arial, sans-serif;
    clip-path: inset(0 50% 50% 0);
    position: absolute;
    top: 120px;
    left: 730px;
}




#oor2{
    color:rgb(10, 201, 67) ;
    font-size: 150px;
    font-family: arial, sans-serif;
    clip-path: inset(0 0 50% 50%);
    position: absolute;
    top: 120px;
    left: 580px;
}


#bal1{
    background-color: rgb(10, 201, 67);
    height: 25px;
    width: 25px;
    border-radius: 250px;
    position: absolute;
    top: 170px;
    left: 610px;
}

#bal2{
    background-color: rgb(10, 201, 67);
    height: 25px;
    width: 25px;
    border-radius: 250px;
    position: absolute;
    top: 170px;
    left: 760px;
}

#oog{
    width: 75px;
    height: 75px;
    border-radius: 75px;
    background-color: white;
    position: absolute;
    top: 190px;
    left: 660px;
}

#ooglit{
    font-size: 75px;
    font-family: arial, sans-serif;
    font-weight: bold;
    clip-path: inset(0 0 50% 0);
    top: 180px;
    left: 675px; 
    position: absolute;   
}
 
#mond{
    width: 35px;
    height: 35px;
    border-radius: 35px;
    position: absolute;
    clip-path: inset(50% 0 0 0);
    background-color: #679267;
    top: 300px;
    left: 680px ;
}


@keyframes updown{
    0%{ transform: translateY(0px); }
    50%{ transform: translateY(-100PX);}
    100%{ transform: translateY(0PX);}
}

