@charset "UTF-8";

.container{
    width: 300px;
    height: 300px;
    background: linear-gradient(180deg, #66b5ff, #66b5ff, #0084ff, #0084ff, #66b5ff, #66b5ff);
    margin: auto;
    position: relative;
}
#image{
    width: 50px;
}
.scroll-l{
    display: flex;
    overflow: hidden;
    padding-top: 6px;
}
.list-l{
    display: flex;
    animation: reform 30s infinite linear .5s both;
}
@keyframes reform{
    from{ transform: translate(0);}
    to{ transform: translate(-100%);}
}

.scroll-r{
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden;
    padding-top: 160px;
}
.list-r{
    display: flex;
    animation: reform-r 30s infinite linear .5s both;
}
@keyframes reform-r{
    from{ transform: translate(0);}
    to{ transform: translate(100%);}
}

p{
    position: absolute;
    text-align: center;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 800;
    color: aliceblue;
}