@import url("https://fonts.cdnfonts.com/css/minecraftia");

body {
  background-color: #dbdbdb;
  font-family: "Minecraftia";
}

/* Minecraft Style Inventory Panel*/
.inventoryWrapper {
  display: inline-block;
  border-style: outset;
  border-width: 5px;
  border-top-color: white;
  border-left-color: white;
  border-right-color: #555555;
  border-bottom-color: #555555;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
}

.inventoryPanel {
  display: grid;
  grid-template-columns: 125px 300px 125px 250px repeat(2, 125px);
  grid-template-rows: repeat(4, 125px);
  background: #c6c6c6;

  padding: 10px;

  

  #person {
    grid-area: 1 / 2 / 5 / 3;
    background: #070d0d;
  }
  
  #armor {
    grid-area: 1 / 1 / 5 / 2;
    margin-top: auto;
    margin-bottom: auto;
    display: grid;
    grid-template-columns: 125px;
    grid-template-rows: repeat(4, 125px);
  }

  #shield {
    grid-area: 4 / 3 / 5 / 4;
  }

  #crafting {
    grid-area: 1 / 4 / 4 / 5;
    margin-top: auto;
    margin-bottom: auto;
    display: grid;
    grid-template-columns: repeat(2, 125px);
    grid-template-rows: repeat(2, 125px);
  }

  #craftingArrow {
    grid-area: 1 / 5 / 4 / 6;
    margin: auto;
  }

  #craftingResult {
    grid-area: 1 / 6 / 4 / 7;
    margin-top: auto;
    margin-bottom: auto;
    display: grid;
    grid-template-columns: 125px;
    grid-template-rows: 125px;
  }
}

.inventoryBox {
  border-style: inset;
  border-width: 4px;
  border-top-color: #373737;
  border-left-color: #373737;
  border-right-color: white;
  border-bottom-color: white;
  background: #8b8b8b;
}
