*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    background-color: #bac1ff1a;
}

#blub{
    width: 200px;
    position: absolute;
    /*left: calc(50% - 100px);
    /*top: 100px;*/
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 100;
}

.move{
    animation: float 3s ease-in-out infinite;
    animation-iteration-count: 4;
}

@keyframes float {
    0% {
        translate: 0 0px;
    }
    50% {
        translate: 0 100px;
    }
    100%{
        translate: 0 0px;
    }
        
}

img{
    height: 100px;
    width: auto;
    z-index: 0;
    
}