h1 {
    text-align: center;
}

.info {
    text-align: center;
    margin-top: 20px;
}

.marquee {
    padding-top: 260px;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 10s linear infinite;
}

.marquee-track h1 {
    margin: 0;
    padding-right: 100px;
    white-space: nowrap;
}

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

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