body {
  width: 100vw;
  height: 100%;
  padding: 0 20px 0 20px;
  background-color: black;
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
}

h1 {
  text-align: center;
  font-size: 60px;
}

.gameContainer {
  display: grid;
  grid-template-rows: 1;
  grid-template-columns: 3;
  grid-template-areas: "player1 gameCenter player2";
}

#player1Container {
  grid-area: player1;
  text-align: center;
}

#player2Container {
  grid-area: player2;
  text-align: center;
}

.CenterContainer {
  grid-area: gameCenter;
  display: grid;
  margin: 50px;
  text-align: center;
  grid-template-areas: "warZone";
}

.card {
  background-color: white;
  width: 130px;
}

.cardWar {
  position: absolute;
  width: 150px;
  filter: drop-shadow(10px 10px 4px #d8d8db);
  background-color: aliceblue;
}

#warZone {
  position: relative;
  background-image: url("https://static.vecteezy.com/system/resources/previews/002/375/040/original/modern-white-background-free-vector.jpg");
  background-repeat: no-repeat;
  border: 1px solid gray;
  width: 100%;
  margin: 10px;
  min-height: 400px;
}

.buttonsContainer {
  grid-area: buttonsContainer;
  grid-column: 1;
  justify-items: center;
}

.buttons {
  background-color: white;
  color: whblackite;
  width: 100px;
  height: 40px;
}

.btndeal {
  display: none;
}

#parWin {
  font-size: 40px;
  color: rgb(211, 211, 4);
}
