#title{
  background: rgb(245, 100, 16);
  padding: 0;
}

#title p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding: 2px;
  color: blueviolet;
 ;
}

.player{
  background: rgb(118, 89, 184);
  padding-left: 10px;
  border: 1px solid black
}


#board-game {
  
  width: 500px;
  margin-left: 15%;
  position: relative;
  margin-top: 5px;
  } 

 .box {
    display: inline-block; 
    height: 50px;
    width: 50px;
    border: 1px grey solid;
    background: rgb(236, 233, 234);
  
    }
         
.weapon {
    background-color: transparent;
    object-fit: cover;
  
  }

  .axe {
    background-image: url(../img/axe.png);
    background-size: 65px;
    background-position:center;
    background-repeat: no-repeat;
    
  }
  .gun {
    
    background-image: url(../img/gun.png);
    background-size: 100%;
    background-position:center;
    background-repeat: no-repeat;
  }
  .sword {
    
    background-image: url(../img/sword.png);
    background-size: 100%;
    background-position:center;
    background-repeat: no-repeat;
  }
  .bowandarrow {
    background-image: url(../img/bowandarrow.png);  
    background-size: 65px;
    background-position:center;
    background-repeat: no-repeat;
    
  }   
     
 .player-1 {
    background-image: url(../img/steve.png);  
    background-size: 100%;
    background-position:center;
    background-repeat: no-repeat;

 }  

 .player-2 {
  background-image: url(../img/alex.png);  
  background-size: 100%;
  background-position:center;
  background-repeat: no-repeat;

}   
#turn-first{
font-size: 25px;
color:blanchedalmond;
text-align: center;
margin: 5px;

}

#turn-second{
  font-size: 25px;
  color:blanchedalmond;
  text-align: center;
  margin: 5px;
}

.health{
 position: relative;
  width: 100%;
  height: 22px;
  border: 1px solid white;
  background-color: white;
}

.hide{
  display: none;
}

#attack1{
  border: 1px solid black;
  border-radius: 10px;
  color:black;

  text-align: center;
  text-decoration: none;
  background-color: white;
  font-size: 16px;
  cursor: pointer;
  margin: 4px;
 
}
#defence1{
  border: 1px solid black;
  border-radius: 10px;
  color:black;
 
  text-align: center;
  text-decoration: none;
  background-color: white;
  font-size: 16px;
  cursor: pointer;
  margin: 4px;
}

#attack2{
  border: 1px solid black;
  border-radius: 10px;
  color:black;
 
  text-align: center;
  text-decoration: none;
  background-color: white;
  font-size: 16px;
  cursor: pointer;
  margin: 4px;
 
}
#defence2{
  border: 1px solid black;
  border-radius: 10px;
  color:black;
 
  text-align: center;
  text-decoration: none;
  background-color: white;
  font-size: 16px;
  cursor: pointer;
  margin: 4px;
}