* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: yellow;
}
#character {
   width: 400px; 
}
#character1 {
    width: 300px;
    /* transition: all 1s linear(0 0%, 0 2.27%, 0.02 4.53%, 0.04 6.8%, 0,06;
    / * transition : all 10s ease-in; */
    
}
.move-right {
  transform: translateX(300px)
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    color: white;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
  }
