*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-image: url(img/Despicable_me_2013102544941.JPG.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}
#minion {
    width: 200px;
    /* transition: all 4s cubic-bezier(0.075, 0.82, 0.165, 1); */
    transition: 1s linear ;
}
.move-right {
    transform: translateX(300px);
}
#banana {
    position: relative;
    transition: all 0.2s ease;
    z-index: 1;
    width: 100px;
}

#start, #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 8, 181, 0.75);
    color: white;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index: 100;
  }

  .move-right {
    translate: 200px 0;
  }

  #start {
    visibility: visible;
    background: coral;
    
  }