body {
    font-family: 'Press Start 2P', cursive;
}
#game {
    background-color: #c0c0c0;
    padding: 1rem;
    border: 4px solid #000;
}
#stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #000;
    padding: 0.5rem;
    background-color: #a0a0a0;
    border: 2px solid #000;
}
#text {
    background-color: #000;
    color: #00ff00;
    padding: 1rem;
    min-height: 8rem;
    margin-top: 1rem;
    border: 2px solid #000;
    font-size: 0.75rem;
}
#screen {
    background-color: #000;
    min-height: 25rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#battle-scene {
    display: none;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    align-items: center;
    color: #00ff00;
    padding: 1rem;
    text-shadow: 2px 2px #000;
}
#background-canvas {
    display: block;
    width: 100%;
    height: 100%;
}
.health-bar-container {
    width: 150px;
    height: 20px;
    background-color: #555;
    border: 2px solid #000;
    position: relative;
}
.health-bar {
    height: 100%;
    background-color: #ff0000;
    transition: width 0.5s linear;
}
.character-display, .monster-display {
    text-align: center;
    font-size: 4rem;
    line-height: 1;
}
.character-name, .monster-name {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 1px 1px #000;
}
