@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Poppins:wght@300&display=swap');

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-de-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-de-mokepon img {
  width: 80px;
}

#boton-mascota {
  width: 180px;
  height: 40px;
  border-radius: 20px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-family: 'Poppins', sans-serif;
  margin-top: 30px;
}

input {
  display: none;
}

input:checked + label {
  background-color: #5D8BF4;
}

#seleccionar-ataque {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.boton-de-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;
  align-items: center;
  flex-direction: column;
}

#boton-reiniciar {
  width: 120px;
  height: 40px;
  background-color: #11468F;
  color: white;
  border: 2px solid white;
  border-radius: 20px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.3s;
}

#boton-reiniciar:hover {
  background-color: #5D8BF4;
}

#boton-reiniciar:active {
  transform: scale(0.95);
}

.ataques {
  display: grid;
  grid-template-columns: 100px 100px;
  color: white;
}

#vidas-jugador, #vidas-enemigo {
  font-size: 32px;
  margin-bottom: 0;
}

.ataques-jugador, .ataques-enemigo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ver-mapa {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#mapa {
  border: 2px solid white;
}

.botones-direccion {
  display: grid;
  grid-template-columns: repeat(3, 60px);
  grid-gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.boton-direccion {
  width: 60px;
  height: 60px;
  background-color: #11468F;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.3s;
}

.boton-direccion:hover {
  background-color: #5D8BF4;
}

.boton-direccion:active {
  transform: scale(0.9);
}

#reiniciar {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#boton-reiniciarM {
  width: 120px;
  height: 40px;
  background-color: #11468F;
  color: white;
  border: 2px solid white;
  border-radius: 20px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.3s;
}

#boton-reiniciarM:hover {
  background-color: #5D8BF4;
}

#boton-reiniciarM:active {
  transform: scale(0.95);
}

@media (max-width: 460px) {
  .tarjetas, .tarjetas-ataques {
    flex-direction: column;
  }
}