
.center-text {
    font-size: 4rem;
    font-weight: bold;
    color: #333; /* 文字色を設定 */
    text-align: center;
    animation: fadeInOut 3s infinite; /* アニメーションを適用 */
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
