@import url('https://fonts.googleapis.com/css2?family=Chilanka&display=swap');

body {
    margin: auto;
    width: 50%;
    background-color: #3848a1;
    overflow: hidden;
}

h1 {
    text-align: center;
}

img {
    position: absolute;
    left: 0;
}


#face  {
    animation: MoveUpDown 16s linear infinite;
    animation-delay: 5s;

    position: absolute;
    left: -20px;
    top: 0px;

}

  @keyframes MoveUpDown {
    0%, 100% {
        top: 0px;
        left : -20px;

    }
    25% {
        
    }
    50% {
        top: 20px;
        left : 0px;
    }
  }