body {
  margin: 0;
  font-family: "Bitcount Grid Single", system-ui;
}

button {
  font-family: "Bitcount Grid Single", system-ui;
  font-weight: bold;
}

#select-pet,
#vs-section,
#result-section {
  min-width: 850px;
  height: 97vh;
  border-radius: 25px;
  padding: 1rem;
  box-sizing: border-box;
}

#select-pet {
  background-color: antiquewhite;
}

#vs-section,
#result-section {
  background-color: rgb(255, 164, 164);
  display: none;
}

#result-elements {
  margin: auto auto;
}
#select-btns {
  box-sizing: border-box;
  margin: 0px auto;
  background-color: skyblue;
  border-radius: 25px;
  height: 90%;
  width: 95%;
  min-width: 600px;
}

#select-btns h3 {
  padding-left: 3rem;
}
#container {
  margin: 0 auto;
  max-width: 900px;
  width: 95%;
  height: 100vh;
  padding: 15px;
  box-sizing: border-box;
}

.pet {
  box-sizing: border-box;
  width: 100%;
  margin: 0rem auto 1rem auto;
}

.pet button {
  height: 100%;
  width: fit-content;
  padding: 0%;
  background-color: transparent;
  border: none;
}
.pet h2 {
  margin-left: 2rem;
  width: fit-content;
  font-size: 1.5rem;
}
#select-btns button img,
#vs-pet img,
#vs-enemy img {
  height: 100px;
}

#result-section img {
  height: 150px;
}
.pet button img:hover {
  filter: drop-shadow(0 0 6px rgba(255, 255, 0, 0.8))
    drop-shadow(0 0 12px rgba(255, 255, 0, 0.8))
    drop-shadow(0 0 24px rgba(255, 255, 0, 0.6));
}

.pet button.selected img {
  filter: drop-shadow(0 0 6px rgba(255, 255, 0, 0.8))
    drop-shadow(0 0 12px rgba(255, 255, 0, 0.8))
    drop-shadow(0 0 24px rgba(255, 255, 0, 0.6));
}

#start-btn {
  display: none;
}

#start-btn,
#play-again-btn {
  width: 150px;
  height: 50px;
  border-radius: 40px;
  margin: 5px auto;
  border: thick solid rebeccapurple;
}

#vs-screen,
#log {
  width: 90%;
  margin: 0px auto;
}

#vs-screen h3 {
  margin: 0rem auto 1rem auto;
}
#pet-vs-enemy {
  width: 70%;
  margin: 0rem auto;
}
#pet-vs-enemy p {
  font-size: large;
  font-weight: bold;
}

#vs-btns button {
  width: 20%;
  height: 35px;
}

#log {
  border: 0.1rem solid rgb(155, 124, 10);
  background-color: burlywood;
  overflow-y: auto;
  height: 6rem;
  margin-top: 10px;
  padding: 0px 10px;
  border-radius: 10px;
}

#log p {
  margin: 0.2em;
  font-size: 0.8rem;
}

.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

/* <div id="result-elements">
    <h1>Victory!</h1>
    <div class="flex-row">
      <h2>Your pet defected enemey</h2>
      <img src="./image/pet-images/dog1.png" alt="" />
    </div>
    <button id="play-again-btn">Play Again</button>
</div> */

#result-elements {
  background-color: rgb(197, 151, 243);
  border-radius: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#result-elements h1 {
  margin: auto auto;
}

/* #result-elements > div {
  border: thick solid rebeccapurple;
} */

#result-elements > div > h2 {
  /* border: thick solid rebeccapurple; */
  height: fit-content;
}

/* #result-elements > div > img {
  border: thick solid rebeccapurple;
} */

#result-elements button {
  width: 10rem;
  margin: 1rem auto;
}
