body {
    margin: 0;
    font-family: sans-serif;
    background-color: #111;
}

.ticker-wrapper {
    background-color: #000;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 8px 0;
    position: relative;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 60s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 20px;
    font-size: 14px;
    font-weight: bold;
}

.ticker-item img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.price-change {
    font-size: 13px;
    margin-left: 4px;
}

.price-change.up {
    color: #0f0;
}

.price-change.down {
    color: #3deffd;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

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