body{
   background-color: #1d1160;
}
.ufo{
    background-color: #FFC72C;
    height: 300px;
    width: 150px;
    border-radius: 100px;
    position: relative;
    top: 300px;
    left: 750px;
    z-index: -4;
    animation: ufo 10s infinite linear;
}
#rand{
    background-color: #FFFF00;
    height: 20px;
    width: 150px;
    position: relative;
    top: 200px;
    z-index: 5;
}
#poten{
    width: 150px;
    height: 25px;
    border-radius: 50px 50px 0 0;
    border: 7px solid #FFC72C ;
    border-bottom: none;
    position: relative;
    top: 240px;
    left: -7px;
    z-index: 1;
}
#cabine{
    width: 150px;
    height: 200px;
    background-color:  white;
    opacity: 0.8;
    position: relative;
    top: -50px;
    left: 0px;
    border-radius: 75px 75px 0px 0px;
    z-index: -3;
}
#lichaam{
    width: 100px;
    height: 175px;
    background-color: #32CD32;
    border-radius: 90px 90px 0px 0px;
    position: relative;
    top: -225px;
    left: 25px;
}
#oorstaaf1{
    width: 50px;
    height: 15px;
    border-radius: 50px 50px 0 0;
    border: 7px solid #32CD32 ;
    border-bottom: none;
    position: relative;
    top: -390px;
    left: 20px;
    rotate: 30deg;
    z-index: -1;
}
#oorstaaf2{
    width: 50px;
    height: 15px;
    border-radius: 50px 50px 0 0;
    border: 7px solid #32CD32 ;
    border-bottom: none;
    position: relative;
    top: -410px;
    left: 65px;
    rotate: 330deg;
    z-index: -1;
}
#oorbol1{
    width: 20px;
    height: 20px;
    border-radius: 360px;
    background-color: #32CD32;
    position: relative;
    top: -440px;
    left: 15px;
}
#oorbol2{
    width: 20px;
    height: 20px;
    border-radius: 360px;
    background-color: #32CD32;
    position: relative;
    top: -457px;
    left: 120px;
}
#mond{
    width: 40px;
    height: 30px;
    border-radius: 50px 50px 0px 0px;
    background-color: #00853E;
    rotate: 180deg;
    position: relative;
    top: -350px;
    left: 55px;
}
#oogbol{
    width: 70px;
    height: 70px;
    border-radius: 360px;
    background-color: white;
    position: relative;
    top: -480px;
    left: 42px;
}
#oog{
    width: 30px;
    height: 15px;
    border-radius: 50px 50px 0 0;
    border: 7px solid black ;
    border-bottom: none;
    position: relative;
    top: -530px;
    left: 54px;
    z-index: 1;
}
@keyframes ufo{
    0% {top: 300px;}
    25% {top: 330px;}
    50%{top: 350px;}
    75%{top: 330px;}
    100%{top: 300px;}
}