/* 2d_transforms.css */

#mochi{
    width: 300px;
    height: 300px;
}

#cookie{
    width: 300px;
    height: 300px;
}

#flan{
    width: 300px;
    height: 300px;
}

#mochi{
    transition: transform 0.5s;
}

#mochi:hover{
transform: rotate(45deg);
} */

#cookie.hover {
    transform: scale(2);
}

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

#cookie {
    transition: transform 0.5s;
}

#cookie:hover {
    transform: scale(2);
}