/* Căn giữa toàn bộ trang */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

/* Chữ Xin chào */
.center-text {
    font-size: 100px;
    font-weight: bold;
    animation: colorChange 3s infinite;
}

/* Hiệu ứng đổi màu */
@keyframes colorChange {
    0% {
        color: red;
    }
    33% {
        color: blue;
    }
    66% {
        color: yellow;
    }
    100% {
        color: red;
    }
}
