* {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body, html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family:"Helvetica", "Arial";
  background-image: url("../images/background.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

body * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.container {
  display: grid; 
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 0px 0px; 
  height: 100%;
  padding: 2% 3%;
  text-align: center;
}

.container > div {
  outline: 3px solid black;
  margin-top: 3px;
  margin-left: 3px;
  text-align: inherit;
}

.left1 {
  grid-area: 2 / 2 / 6 / 4;
}

.left2 {
  grid-area: 6 / 2 / 10 / 4;
}

.mid1 {
  grid-area: 4 / 4 / 6 / 7;
}

.mid2 {
  grid-area: 4 / 7 / 6 / 10;
}

.mid3 {
  grid-area: 6 / 4 / 8 / 7;
}

.mid4 {
  grid-area: 6 / 7 / 8 / 10;
}

.right1 {
  grid-area: 2 / 10 / 6 / 12;
}

.right2 {
  grid-area: 6 / 10 / 10 / 12;
}

.top {
  grid-area: 1 / 5 / 4 / 9;
}

.bottom {
  grid-area: 8 / 5 / 11 / 9;
}

h2, h3 {
  width: 100%;
}

.marley {
  background-color: rgba(11, 24, 201, 0.6);
}

.eldia {
  background-color: rgba(216, 0, 0, 0.6);
}

.eldia-regiment {
  background-color: rgba(216, 0, 0);
}

.marley-regiment {
  background-color: rgb(11, 230, 211);
}

.empty {
  background-color: none;
}

.important {
  color: rgb(89, 0, 255);
}

.eldia-wins, .marley-wins, .eldia-grave, .marley-grave {
  position: absolute;
  font-weight: bold;
  font-size: 30px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

.eldia-wins, .marley-wins {
  top: 0px;
}

.eldia-grave, .marley-grave {
  top: 40px;
  text-decoration: underline;
}

.eldia-wins, .eldia-grave {
  left: 10px;
  color: rgb(196, 6, 6);
}

.marley-wins, .marley-grave {
  right: 10px;
  color: rgb(7, 95, 177);
}

.cave, .castle, .city, .underground, .forest {
  max-width: 75%;
  max-height: 75%;
}

.castle {
  padding-top: 5%;
}

.cave, .forest {
  padding-top: 15%;
}

div > img {
  user-select: none;
  -webkit-user-drag: none;
}

.regiment {
  position: absolute;
  cursor: default;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  padding: 5px;
  border: 2px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.footnote {
  font-size: 20px;
  font-style: italic;
  position: absolute;
  bottom: 0;
  right: 0;
}

.donate {
  font-size: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}

a {
  text-decoration: none;
  font-weight: bold;
}

.cover {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  text-align: center;
}

.cover > span {
  position: relative;
  top: 45%;
  color: white;
  font-size: 80px;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
}
@media only screen and (max-width: 1200px) {
  .marley-wins, .eldia-wins, .marley-grave, .eldia-grave {
    font-size: 25px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 16px;
  }

  .regiment {
    height: 50px;
    width: 50px;
  }

  .regiment span {
    font-size: 15px;
  }
}

@media only screen and (max-width: 950px) {
  .marley-wins, .eldia-wins, .marley-grave, .eldia-grave {
    font-size: 22px;
  }
  h2 {
    font-size: 16px;
  }
  h3 {
    font-size: 12px;
  }
}

@media only screen and (max-width: 650px) {
  .regiment {
    height: 40px;
    width: 40px;
  }

  .regiment span {
    font-size: 12px;
  }
}