﻿.TsuriDetails {
    text-shadow: 2px 2px 5px lightgray;
    animation-name: MoveRight;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    position: relative;    
}

@keyframes MoveRight {
    from {
        top: -120px;
    }

    to {
        top: 0px;
    }
}
