/* Make it a marquee */
.marquee {
    width: 500px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px black solid;
    margin-right: 20px;
}

@media (max-width: 600px) {
  .marquee {
    max-width: 250px;
  }
}


.marquee span {
    display: inline-block;
    padding-left: 100%;
    text-indent: 0;
    animation: marquee 15s linear infinite;
}
.marquee span:hover {
    animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Make it pretty */
.news {
    padding-left: 1.5em;
    position: relative;
    font-family: "Candara Regular";
    font-size: 16px;
}