@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Double:wght@100..900&display=swap');

* {
  background-color: #ff4d4d;
}

.bitcount-prop-double-font {
  font-family: "Bitcount Prop Double", system-ui;
  font-optical-sizing: auto;
  font-style: normal;
}

.title {
  color: white;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
}

.select-your-pokemon {
  color: white;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: 1rem;
  margin: 0 1rem;
}

.list-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-wrap {
  display: flex;
  border: 5px solid white;
  margin: 1rem;
  padding: 3rem;
  border-radius: 50%;
}

.img-wrap img {
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
}

.pokemon-wrap {
  display: flex;
  margin: 1rem;
  padding: 3rem;
  border-radius: 50%;
}

.pokemon-wrap img {
  width: 150px;
  height: 150px;
}

.button-wrap {
  border: none;
}

.name-wrap p {
  font-size: 1.5rem;
}

.type-wrap p {
  display: inline-flex;
  margin: 1rem 0.2rem;
  padding: 0.2rem 1rem;
  border-radius: 2rem;
  font-weight: 400;
  color: white;
  border: 3px solid black;
}

.pokemon-card-wrap {
  border: 5px solid red;
  margin: 0 1rem;
  padding: 1rem;
  border-radius: 1rem;
}

.battle-card-container {
  display: flex;
  justify-content: center;
}

.battle-result {
  border: 5px dashed black;
  padding: 0 1rem;
  border-radius: 1rem;
}

.play-again-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.inner-button {
  display: flex;
  
  padding: 0.3rem 1rem;
  border: 3px solid black;
  border-radius: 1rem;
  font-weight: 500;
  background-color: green;
}

.result-text {
  display: flex;
  justify-content: center;
}

.attack-text {
  color: black;
  font-weight: 600;
}

.result-type-badge {
  border: 2px solid black;
  padding: 0.2rem 1rem;
  border-radius: 1rem;
  color: white;
}

.multiplier-text {
  display: flex;
  justify-content: center;
  font-weight: 600;
  margin-top: 10px;
}

.versus-multiplier {
  display: flex;
  justify-content: center;
  font-weight: 500;
}


