*{
    margin: 0;
    padding: 0;
    box-sizing:0;

}
body {
    background: crimson

}
#character {
    width: 400px;
    /* transition:all 10s  ease-in;  */
    transition: all 1s linear ;

}
.move-right{
    transform: translateX(300px)
}
#object {
    width:100px;
}

#object {
    width:100px;
    
}
#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;
  }

