body {
    display: block;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative; /* Ensure sprites are positioned relative to the body */
    margin: 0;
    padding: 0;
}

.sprite {
    position: absolute;
    width: 128px; /* Width of a single sprite frame */
    height: 128px; /* Height of a single sprite frame */
    left: 10px; /* Default left position */
    bottom: 0; /* Default bottom position */
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.sprite[data-user="chiroxtreichel"], .sprite[data-user="talutahsplayground"]
{
	z-index: 10;
}

/* Background Element */
.sprite .background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: auto;
	background-repeat: no-repeat;
    z-index: -1; /* Push behind the text */
}

/* Flip the Background Only */
.Flip .background {
    transform: scaleX(-1); /* Flip horizontally */
    transform-origin: center;
}

/* Text Style (Optional) */
.sprite span {
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: white;
	letter-spacing: 2px;
	top: -8px;
	text-stroke: 0.5px black;
	-webkit-text-stroke: 0.5 black;
	font-weight: bolder;
}

debug
{
	display: none;
	background-color: white;
}