@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-regular.otf") format("opentype");
}

* {
  font-family: "Manrope", sans-serif !important;
}

.row {
  margin: 0 auto;
  display: flex;
}

#board {
  width: fit-content;
  align-content: center;
  justify-content: center;
  text-align: center;
}

.box {
  width: 50px;
  height: 50px;
  display: flex;
  border: black solid 0.1px;
}

.possible {
  background-color: #ffff75;
  border: black dashed 0.1px;
  z-index: 9;
}

.weapon-in-card {
  width: 42px;
  filter: invert(1);
}

.hidden {
  display: none;
}

#battle {
  display: none;
}

.uk-form-icon {
  left: 5px;
  width: 30px;
}

.battle-choices {
  width: 50px;
}

footer {
  display: block;

}

@media only screen and (max-width: 600px) {
  .box {
    width: 30px;
    height: 30px;
  }

  #player1-card, #player2-card {
    display: none;
  }

  #board-box, #name-form {
    width: 95%;
  }
}
