._Button_Container
{
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin: 40px 0;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    background: rgba(0, 0, 0, 0.5);
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

._Button_Group
{
    position: absolute;
    display: flex;
    gap: 10px;
    padding: 0 5px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    animation: scrollButtons 120s linear infinite;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

._Button_Group:nth-child(2) {
    /* 😭 PAMIĘTAĆ!!! POŁOWA CZASU ANIMACJI */
    animation-delay: -60s;
}

._Button_Image
{
    width: 176px;
    height: 62px;
    margin: 10px 0;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    transform: translateZ(0);
}

@keyframes scrollButtons {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

._Button_Container:hover ._Button_Group {
    animation-play-state: paused;
}
