.text {
  font-size:18px;
            line-height:1.5;
            word-break:break-word;
            white-space:normal;
            display:flex;
            align-items:flex-start;
            gap:10px;
}

.gradient-text {
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(
        90deg,
        #ff0000,
        #ff7f00,
        #ffff00,
        #00ff00,
        #00ffff,
        #0000ff,
        #4b0082,
        #8f00ff,
        #ff1493,
        #ff4500
    );
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 20s linear infinite;
}

@keyframes gradientMove {
    0%   { background-position: 0%; }
    100% { background-position: 400%; }
}

