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

body {
    width: 100%;
    height: 100vh;
    background-color: lightblue;
}

#character {
    width: 300px;
    position: absolute;
    /* left: calc(50% - 150px); */
    /* top: 100px; */
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.move{
    transform: translateX(100px);
}