body {
  font-family: "Poppins", sans-serif;
  background-color: #041562;
}

#seleccionar-mascota {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.titulo {
  color: white;
  font-size: 32px;
  font-family: "Fredoka One", cursive;
}

.subtitulo {
  color: white;
  font-size: 20px;
}

.tarjetas,
.tarjetas-ataques {
  display: flex;
  gap: 10px;
}

.tarjeta-mokepon {
  width: 180px;
  height: 100px;
  background: #11468f;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.tarjeta-mokepon img {
  width: 80px;
}

input {
  display: none;
}

input:checked + label {
  background-color: #5d8bf4;
}

#boton-mascota {
  width: 180px;
  height: 40px;
  margin-top: 30px;
  border-radius: 20px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-family: "Poppins", sans-serif;
}

#seleccionar-ataque {
  flex-direction: column;
  align-items: center;
}

.boton-ataque {
  background-color: #11468f;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 20px;
  border-color: transparent;
  width: 80px;
  color: white;
  font-family: "Poppins", sans-serif;
}

#mensajes {
  width: 280px;
  background: #eeeeee;
  padding: 20px;
  margin-top: 20px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
}

#boton-reiniciar {
  border: none;
  color: #11468f;
}

.ataques {
  display: grid;
  grid-template-columns: 100px 100px;
}

#vidas-jugador,
#vidas-enemigo {
  font-size: 32px;
  margin-bottom: 0;
  color: white;
}

.ataques-jugador,
.ataques-enemigo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

#ver-mapa {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#ver-mapa button {
  width: 80px;
  height: 40px;
  margin: 10px 0;
  border-radius: 20px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 560px) {
  .tarjetas {
    flex-direction: column;
  }
  .tarjetas-ataques {
    flex-direction: column;
  }
}

@media (max-width: 300px) {
  #ver-mapa div {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
