.Scroll-Container {
    display: flex;
    align-items: start;
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    margin-top: 3rem;
    margin-bottom: 2.3rem;
}
.More-Content {
    height: 7rem;
    display: flex;
    font-size: 3rem;
    white-space: nowrap;
}
.Left-to-Right {
    align-items: center;
    display: flex;
    animation: Right 50s infinite linear;
}
@keyframes Right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}