.vroom {
    height: 75px;
}


.vroom:hover {
    transition: transform(0.5);
}

.move-right {
    transform: translateX(500px);
}


#flip {
    width: 200px;
    height: 200px;
    background-color: purple;
    border-radius: 16px;
    box-shadow: 1px 2px 15px grey, -25px 50px 50px grey;
    transition: 1s ease-in-out transform;
}

#flip:hover {
    transform: rotateY(180deg);
    box-shadow: 1px 2px 10px grey, 44px 44px 24px grey;
}
