body {
    background: #060e1b;
    overflow: hidden;
    font-family: Arial, sans-serif;
    color: white;
    /* fallback nếu rainbow không ăn */
    margin: 0;
    padding: 0;
}


/* Canvas nền sao */

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: black;
}


/* Rainbow áp dụng cho tất cả phần tử chữ */

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
strong,
em,
button,
label {
    background: linear-gradient( 270deg, red, orange, yellow, green, cyan, blue, violet, red);
    background-size: 600% 600%;
    /* gradient dài hơn cho hiệu ứng mượt */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 12s ease infinite;
    font-weight: bold;
    color: white;
    /* fallback nếu gradient không hiển thị */
    -webkit-text-stroke: 0.5px black;
    /* viền chữ mảnh để nổi bật */
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
    /* glow nhẹ */
}


/* Giữ cho chữ giữa màn hình nổi bật hơn */

#profile h1 {
    font-size: 2.5rem;
    -webkit-text-stroke: 1px black;
    /* viền đậm hơn cho tên chính */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


/* Animation rainbow */

@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}