* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(18, 38, 81);
}


#r2d2 {
    width: 250px;
    height: 100%;
    /*transition: all 1.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);*/
    transition: all 0.5s ease-in;
}


.move-right {
transform: translateX(300px)

}

#bomb{
    width: 100px;
    height: 100%;
    transition: all 0.2s ease;
    z-index: 1;
}

#start, #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(148, 0, 25);
    color: white;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index:100
  }
/* #start{ */
    /* visibility: visible; */
    /* background: blue; */

/* } */