@view-transition {
    navigation: auto;
}
@keyframes move-out {
    
}
@keyframes move-in {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0%);
    }
}

::view-transition-old(root) {
    animation: 0.5s ease-in both move-out;
}
::view-transition-new(root) {
    animation: 0.5s ease-in both move-in;
}