html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    cursor: crosshair;
}

#canvas {
    height: 100%;
    width: 100%;
    background-color: black;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/wallpaper.jpg') no-repeat center center/cover;
}

.monster {
    position: absolute;
    width: 50px;
    height: 50px;
}

.monster-hp {
    position: absolute;
    bottom: 0;
    right: 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    font-size: 12px;
    padding: 2px;
    z-index: 1;
}

#scoreboard {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-family: Georgia, serif;
    font-size: 18px;
}

#pause-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: rgb(255, 255, 255);
    font-family: Arial, sans-serif;
    font-size: 24px;
    text-align: center;
    line-height: 100vh;
    z-index: 1000;
}

#console {
    display: None;
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}
#console label {
    display: None;
    margin-bottom: 5px;
}