body {
    margin: 0;
    padding: 0;
}


.container {
    display: flex;
    width: 100%;
    height: 100vh;
    background-image: url(pictures/cave.jpg);
    background-size: cover;
}

.container.creating::before{
    content: 'VS';
    background: #575786;
    color: #fff;
    font-size: 80px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-stats {
    width: 200px;
    height: 130px;
    background-color: #575786;
    color: white;
    position: absolute;
    border-radius: 25px;
    top: 208px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    
}

.enemy-stats {
    width: 200px;
    height: 130px;
    background-color: #575786;
    color: white;
    position: absolute;
    border-radius: 25px;
    right: 0px;
    top: 208px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    
}



.hero-container {
   width: 150px;
    height: 150px;
    position: absolute;
    bottom: 45px;
    left: 350px;
    background-image: url(pictures/human.png);
    background-size: 1800px;
    background-repeat: no-repeat;
    transition: translate 2s;
    background-position-y: -417px;
    transition: transform 1s;

}

#damageHeroContainer {
    position: absolute;
    top: 580px;
    left: 465px;
    color: wheat;
    width: 50px;
    height: 30px;
    background-color: red;
    display: none;
    
}


.enemy-container {
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: 45px;
    right: 200px;
    background-image: url(pictures/skeleton.png);
    background-size: 1800px;
    background-repeat: no-repeat;
    transition: transform 2s;
    background-position-y: -135px;
    transition: transform 1s;
    
}

#damageEnemyContainer {
    position: absolute;
    top: 580px;
    right: 280px;
    color: wheat;
    width: 50px;
    height: 30px;
    background-color: red;
    display: none;
    
}

.playerItem{
    width: 60px;
    height: 60px;
    position: absolute;
    top: -50px;
    left: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: translate 2s;
}

.controlsHero {
    justify-content: space-between;
    display: flex;
    justify-content: space-between;
    width: max-content;
    position: absolute;
    top: 151px;
    left: 31px;
    height: 34px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.controlsEnemy {
    justify-content: space-between;
    display: flex;
    justify-content: space-between;
    width: max-content;
    position: absolute;
    top: 151px;
    right: 31px;
    height: 34px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.health-bar {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 200px;
    height: 20px;
    padding: 5px;
    background: #ddd;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    bottom: 65px;
  }
  .bar {
    background: #c54;
    width: 100%;
    height: 10px;
    position: relative;
    
    transition: width .5s linear;
  }
  
  .hit {
    background: rgba(255,255,255,0.6);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0px;
    
    transition: width .5s linear;
  }

  @media only screen and (min-device-width: 300px) {
    /* For mobile phones: */
    .container {
        display: flex;
        width: 100%;
        height: 100vh;
        background-image: url(pictures/cave.jpg);
        background-size: cover;
    }

    

    .hero-stats {
        width: 200px;
        height: 86px;
        background-color: #575786;
        color: white;
        position: absolute;
        border-radius: 25px;
        top: 208px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    .controlsHero {
        justify-content: space-between;
        display: flex;
        justify-content: space-between;
        width: max-content;
        position: absolute;
        top: 315px;
        height: 34px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    .enemy-stats {
        width: 200px;
        height: 86px;
        background-color: #575786;
        color: white;
        position: absolute;
        border-radius: 25px;
        top: 208px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    .controlsEnemy {
        justify-content: space-between;
        display: flex;
        justify-content: space-between;
        width: max-content;
        position: absolute;
        top: 315px;
        height: 34px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

  }