.GOTCHI {
    position: relative;
    width: 100vw;
    margin: 0;
    overflow: hidden;
    mask-image: linear-gradient(black 95%, transparent 100%);
    top: 0;
    z-index: 2;
}

.background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-pixel {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('/src/img/sky.png');
    background-size: auto 100%;
    background-repeat: repeat-x;
    background-position: 0 0;
    image-rendering: pixelated;
    animation: skyMove 50s linear infinite alternate;
    margin: 0;
    z-index: -1;
    pointer-events: none;
}

@keyframes skyMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% -100%;
    }
}

.cloud {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('/src/img/cloud.png');
    background-size: auto 100%;
    background-repeat: repeat-x;
    background-position: 0 0;
    image-rendering: pixelated;
    opacity: 0.1;
    animation: cloudMove 20s linear infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes cloudMove {
    0% {
        background-position: 0 70%;
    }

    100% {
        background-position: -100% 70%;
    }
}

@media (max-width: 1200px) {
    .GOTCHI {
        position: relative;
        width: 200%;
        left: -50%;
        top: 0;
        z-index: 2;
    }
}

@media (max-width: 700px) {
    .GOTCHI {
        position: relative;
        width: 300%;
        left: -110%;
        top: 0;
        z-index: 2;
    }
}