body{
    margin: 0;
    padding: 0;
    background: #080407;
}
.main{
    max-width: 420px;
    margin: auto;
}
.main img{width: 100%;margin: 0; padding: 0; display: block}
.ticker {
    margin: 14px 0 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 60, 142, 0.24), rgba(255, 123, 55, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    min-width: 100%;
    animation: ticker 15s linear infinite;
    color: #fff7fb;
    font-size: 15px;
    font-weight: 600;
}
.ticker-track a{
    color: #fff7fb;
    text-decoration: none;
}
@keyframes ticker {
    from {
        transform: translateX(100%);
    }

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

.foot{
    width: 100%;
    max-width: 420px;

    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.foot img{
    display: block;
    width: 100%;
    height: auto;
}