/* Your custom css code goes here */
.announcement {
    width: 100%;
	line-height: 15px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #6a41ed;
}
.announcement p {
    margin: 0;
    padding: 10px 0px;
    display: inline-block;
    padding-left: 100%;
    animation: scroll 30s linear infinite;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
}
@keyframes scroll {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}