@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
.gameFont {
  font-family: "Press Start 2P", cursive;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-image: url(/images/backgroundPic2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1.25fr 3fr;
      grid-template-rows: 1.25fr 3fr;
  place-items: center;
}

header {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.headerPic {
  height: 20vh;
  width: 500px;
}

main {
  -ms-grid-row-align: end;
      align-self: end;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  height: 90%;
  width: 100%;
}

#newPlyr,
#plyAgain {
  font-family: "Press Start 2P", cursive;
  text-decoration: none;
  font-size: 20px;
  color: #2f6fb9;
  font-weight: bold;
  background: #f1ca23;
  border-radius: 10px;
  width: 450px;
  height: 30px;
  padding-top: 8px;
  text-align: center;
  -webkit-box-shadow: 1px 1px 2px #fff;
          box-shadow: 1px 1px 2px #fff;
  margin-top: 20px;
}

#plyAgain {
  padding: 10px;
  height: 35px;
}

#slakothPic {
  width: 500px;
}

#mimikyuBusted {
  height: 250px;
}

section {
  -ms-grid-row-align: end;
      align-self: end;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 15% 85%;
      grid-template-rows: 15% 85%;
  justify-items: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  height: 90%;
  width: 100%;
}

img {
  height: 350px;
}

.pokemonContainer {
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 1fr;
      grid-template-columns: 250px 1fr;
  place-items: center;
  -ms-grid-column-align: start;
      justify-self: start;
  -ms-grid-row-align: end;
      align-self: end;
}

#opponentContainer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 1fr;
      grid-template-columns: 50px 1fr;
}

.attackButtonsContainer {
  display: -ms-grid;
  display: grid;
  place-items: center;
  row-gap: 10px;
  margin-left: 10%;
}

.attackButton {
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: #c73136;
  border-radius: 5px;
  color: #fff;
  font-size: 25px;
  width: 200px;
  height: 70px;
  text-align: center;
}

.attackButton:hover {
  background: #b8292e;
  cursor: pointer;
}

.healthPts {
  font-size: 20px;
  color: #2f6fb9;
  background: #ffffffbb;
  padding: 10px 10px;
  border-radius: 10px;
}

#winContainer {
  position: absolute;
  left: 45%;
  font-size: 25px;
  color: #f1ca23;
  top: 30vh;
  left: 0;
  text-align: center;
  width: 100%;
}
/*# sourceMappingURL=style2.css.map */