*{
    margin: 10px;
    padding: 10px;
    outline: none;
    border: none;
    scroll-behavior: smooth;
}

/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel {
    position: relative;
    width: 7950px;
    height: 560px;
    overflow: hidden;
    background: #111 url('../images/mf.jpg');
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul {
    width: 7000px;
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
    /* Required only for block elements like <li>'s */
    float: left;
}

.smokeyright { 
  overflow: hidden;
  position: relative;
  animation: MarqueeRight linear 120s infinite;
}
@keyframes MarqueeRight
{
  0% { right: 100% }
  100% { right: -100% }
}
