body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.stickyr{
    position:sticky;
    top:0;
}

.stickyc{
    position:sticky;
    left:0;
}

.marquee {
            height: 50px;
            overflow: hidden;
            position: relative;
            background: #fefefe;
            color: #333;
        }
        
.marquee p {
    position: relative;
    height: 100%;
    margin: 0;
    line-height: 50px;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-left 240s linear infinite;
    -webkit-animation: scroll-left 240s linear infinite;
    animation: scroll-left 240s linear infinite;
}

.normallink{
    text-decoration: none;
    color:black;
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}