div {
    margin: 100p;
    padding: 100;
    font-weight: bold;
    writing-mode: horizontal-tb;
    word-break: keep-all;
    color: #000000;
}

.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 160px;
    overflow-x: hidden;
    overflow: hidden;
}

.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 32s linear infinite;
    writing-mode: vertical-rl;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}