body {
    margin: 0;
    padding: 0;
    background-color: purple;
    overflow: hidden;
}

.animContainer {
    position: relative;
    top: 75%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.canister {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

    width: 250px;
    height: 500px;

    border-radius: 125px;
    background-color: lightblue;
}

.halfCircle {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 75px;
    height: 37.5px;

    background: rgba(0, 0, 0, 0);
    border-top-left-radius: 37.5px;
    border-top-right-radius: 37.5px;
    border: 12.5px solid black;
    border-bottom: 0;

    box-sizing: border-box;
}

.fullCircle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: black;
}

#alien {
    position: absolute;
    background-color: green;
    top: 60%;
    width: 200px;
    height: 400px;
    border-radius: 100px;
}

#antennaLeft {
    width: 100px;
    height: 50px;
    border-color: green;
    transform: rotate(90deg);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-width: 12.5px;
    top: 2.5%;
    left: -10%;
}

#antennaBlobLeft {
    top: 100%;
    left: -10%;
    background-color: green;
}

#antennaRight {
    width: 100px;
    height: 50px;
    border-color: green;
    transform: rotate(-90deg);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-width: 12.5px;
    top: 2.5%;
    left: 60%;
}

#antennaBlobRight {
    top: 100%;
    left: 110%;
    background-color: green;
}


#eye {
    position: absolute;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    top: 25%;
    background-color: white;
}

#mouth {   
    width: 60px;
    height: 30px; 
    background: darkgreen;
    transform: rotate(180deg);
    border: none;
    top: 46.5%;
    left: 35%;
}

#legs {
    background: rgba(0, 0, 0, 0);
    width: 200px;
    height: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-color: rgba(255, 128, 0, 1);
    border-width: 15px;
    top: 90%;
}

#rim {
    position: absolute;
    background: linear-gradient(0deg, rgba(0,0,0,0) 25%, rgb(255, 255, 0) 25%, rgba(255,255,0,1) 32.5%, rgba(0,0,0,0) 32.5%);
}

#bottom {
    position: absolute;
    background: linear-gradient(0deg, rgba(255, 128, 0, 1) 25%, rgba(0,0,0,0) 25%);
}

@keyframes bobbing {
    0% {top: 70%;}
    50% {top: 80%;}
    100% {top: 70%;}
}