.sprite {
    background-image: url("gfx.png");
    background-repeat: no-repeat;
    background-size: 3200% 3200%;
    transform-origin: 50% 50%;
    width: 64px;
    height: 64px;
    position: absolute;
}

body {
    font-family: Tahoma;
    margin: 0px;
    padding: 0px;
    background-color: #111;
    user-select: none;
}

#playArea {
    width: 1024px;
    height: 768px;
    margin: auto;
    align-content: center;
    background-color: black;
    color: white;
}

#welcome {
    position:absolute;
    margin: auto;
    width: 1024px;
    height: 768px;
    top: 0px;
}

#map {
    width: 1024px;
    height: 768px;
    position: absolute;
    overflow: hidden;
}

#ui {
    position: absolute;
    width: 1024px;
    height: 768px;
    z-index: 1;
    visibility: hidden;
}

#gameWin, #gameLose {
    display: none;
    position: relative;
    border: 1px solid white;
    background-color: #010101c0;
    top: 144px;
    width: 640px;
    height: 480px;
    margin: auto;
    z-index: 10000;
}

#ui p {
    margin: 0px;
    position: absolute;
    filter: drop-shadow(0px 0px 3px black);
}

#level {
    top: 0px;
    left: 0px;
    z-index: 1000;
}

#score {
    top: 20px;
    left: 0px;
    z-index: 1000;
}

#health {
    top: 0px;
    right: 0px;
    z-index: 1000;
}

#strength { 
    top: 20px;
    right: 0px;
    z-index: 1000;
}

#damage { 
    top: 40px;
    right: 0px;
    z-index: 1000;
}

#ammo { 
    top: 60px;
    right: 0px;
    z-index: 1000;
}

#shield { 
    top: 80px;
    right: 0px;
    z-index: 1000;
}

#pausescreen {
    position: absolute; 
    left: 0px; 
    right: 0px; 
    top: 0px; 
    bottom: 0px;
    visibility: hidden;
    z-index: 1000;
}