* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: green;
}
element.style{
        transform: translateX(250px);
}

#dababychriscar {
    width: 400px;
    /**transition: all 10s ease-in-out;**/
    transition: all 0.5s ease-in-out;
    position: relative;
}
.move-right{
    transform: translateX(300px);
}
#fris{
    width: 200px;
    transition: all 0.2 ease-in-out;
    position: relative;
}
#gravy{
    width: 100px;
    transition: all 0.2 ease-in-out;
    position: relative;
}
#cheese{
    width: 140px;
    transition: all 0.2 ease-in-out;
    position: relative;
}

#start, #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;
    z-index: 100;
}