body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #222;
}
#game-container {
    width: 500px;
    height: 500px;
    position: relative;
    background-image: url('fondo.png');
    background-size: cover;
    margin-top: -16px;
}
#loading-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
    background-color: black;
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
}
#unmute-btn {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4d4d4d;
    border: 0px;
    position: fixed;
    top: 10px;
    right: 10px;
}
#enemy, #player {
    position: absolute;
    width: 80px;
}
#enemy { top: 50px; right: 50px; }
#player { bottom: 50px; left: 50px; }
.lives {
    position: absolute;
    width: 100px;
}
#enemy-lives { top: 10px; right: 10px; }
#player-lives { bottom: 10px; left: 10px; }
#question-box {
    position: absolute;
    bottom: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120px;
    background-image: url('dialogo.png');
    background-size: cover;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    color: white;
}
#question-text {
    color: #333;
    font-family: cursive;
    font-size: 28px;
    margin: 0px;
}
.option-btn {
    display: inline-block;
    margin: 5px;
    padding: 10px;
    width: 100px;
    height: 40px;
    background-image: url(boton.png);
    background-color: transparent;
    background-size: cover;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}
#intro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
    background-color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}
.lives-container {
    display: flex;
    gap: 5px;
    position: absolute;
}
#enemy-lives { top: 10px; right: 10px; }
#player-lives { bottom: 10px; left: 10px; }
.life {
    width: 30px;
    height: auto;
}