:root {
    --width:250px;
    --height:calc(var(--width) / 2);
  }
  
  
  body {
    background-color: black;
  }
  
  .kcb {
    width: var(--width);
    height: var(--height);
    background: url('LOGO.png');
    background-size: contain;
    background-repeat: no-repeat;
    position:absolute;
  
    animation: toRight linear 6.8s infinite alternate, bounce linear 17s infinite alternate;
  }
  
  @keyframes bounce {
    0% {
      top:0;
    }
    48% {
    }
    50% {
      top: calc(100% - var(--height));
    }
    52% {
    }
    100% {
      top: 0;
    }
  }
  
  @keyframes toRight {
  
    0% {
      left: 0;
    }
  
    100% {
      left: calc(100% - var(--width));
    }
  }