html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black;
}

.background {
    position: fixed;
    inset: 0;

    background-image: url("lacarriere.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scaleX(-1);
    left:30%;
    z-index: 0;
}

#monk {
    position: fixed;

    left: 3%;
    bottom: 0;

    height: 20vh;
    width: auto;

    image-rendering: pixelated;
    z-index: 1;
}

#streak {
    position: fixed;
    left: 52%;
    bottom: 47%;

    height: 60vh;
    width: auto;

    image-rendering: pixelated;
    z-index: 1;
}

@media (max-width: 768px) {
    #streak {
        left: 5%;
    }
}