html {
    zoom: 0.9;
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

body {
    background-color: rgb(212, 211, 211);
    background-image: url("../images/background/backgroundimg.png");
    background-attachment: fixed;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    font-family: 'Ubuntu Mono', monospace;
    color: rgb(58, 58, 58);
}

h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 50px;
    margin: 10px;

}
.container-fluid {
    display: block;
    margin: auto;
    width: 90%;
}

.characters {
    background-color: #ffffffda;
    margin-top: 5%;
    padding: 20px;
    border: 10px double #1e61b8e3;
}

.disabled {
    cursor: not-allowed;
}

progress {
    height: 50px;
    width: 100%;
    margin-top: 10px;
    background-color: rgb(255, 255, 255);
    padding: 5px;
    
}
progress::-webkit-progress-value {
    background: rgb(96, 187, 214);;
}

.allAttacks {
    color: white;
}

.fader {
    opacity: 0.3;
}

.visible {
    opacity: 1;
}

#fightBtn {
    margin: auto;
    background-color: rgba(15, 65, 88, 0.877);
    padding: 10px;
    color: white;
    font-weight: 600; 
}

#myEnemySpot {
    float: right;
}

#heroHP, #enemyHP {
    color: white;
    margin-top: 10px;
}

#myHeroSpot {
    float: left;
}

.enemy {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.music {
    display: none;
}

.gameplayHero, .gameplayEnemy {
    color: white;
}

.gameplay, .hp {
    
    padding: 20px;
    border-left: 10px double rgba(255, 255, 255, 0.753);
    border-right: 10px double  rgba(255, 255, 255, 0.753);
}

.gameplay {
    margin-top: 10px;
    border-top: 10px double  rgba(255, 255, 255, 0.753);
    background-size: cover;
    height: 445px;
    background-repeat: no-repeat;
    background-color: rgba(142, 183, 238, 0.555);
    
}

.hp {
    border-bottom: 10px double  rgba(255, 255, 255, 0.753);
    background-color: rgba(0, 0, 0, 0.829);
}