#animation {
    font-size: 20px;
    font-weight: bold;
    animation-name: fadein;
    animation-duration: 3s;
    animation-iteration-count: 1;
    text-align: center;
}
@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(-70px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 参考  https://web-ashibi.net/archives/1952 */
