body{
  font-family: 'power', Courier, monospace;
  background:var(--corSecundaria);
}

body::before{
  content: '';
  background-image: url("../imagens/the-power-puff-girls-hearts.gif");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

main{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cabecalho{
z-index: 1;
display: flex;
justify-content: center;
font-size:52px;
-webkit-text-stroke:2px var(--corTituloForte);
}

.cabecalho .titulo{
  color:antiquewhite;
}

.selecao-de-personagens{
  display: flex;
  align-items: center;
  justify-content: center;
}

.selecao-de-personagens .personagem-grande{
  text-align: center;
  width: 30%;
  height: 70vh;
  position: relative;
}

.selecao-de-personagens .personagem-grande img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.selecao-de-personagens .personagem-grande .nome::before{
  content: '';
  height: 30px;
  width: 100%;
  position: absolute;
  bottom: -15px;
  left: 0;
}

.selecao-de-personagens .personagem-grande .nome h2{
color: var(--corPadrao);
font-family: 'puff',sans-serif;
position: absolute;
bottom: 0px;
width: 100%;
font-size: 27px;
}

.selecao-de-personagens .personagem-grande.personagem-jogador-1 .nome::before{
  background-color: var(--corAzulPrincipal);
}

.selecao-de-personagens .personagem-grande.personagem-jogador-2 .nome::before{
  background-color: var(--corVermelhaPrincipal);
}

.selecao-de-personagens .lista-de-personagens{
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  justify-content: center;
  gap: 12px;
}

.selecao-de-personagens .lista-de-personagens .personagem{
  border: 2px solid var(--corPadrao);
  background-color: var(--corPadrao);
  width: 30%;
  height: 160px;
  cursor: pointer;
  z-index: 2;
  border-radius: 5px;
  position: relative;
  transition: 0.15s ease-in-out;

}

.selecao-de-personagens .lista-de-personagens .personagem img{
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.selecao-de-personagens .lista-de-personagens .personagem.selecionado{
  border: 2px solid var(--corAzulMedia);
  animation: c-glowing-blue .3s ease-in-out infinite;
  animation-direction: alternate;
}

.selecao-de-personagens .lista-de-personagens .personagem:hover{
  animation: c-glowing-blue .3s ease-in-out infinite;
  animation-direction: alternate;
  transform: scale(1.07);
  z-index: 2;
}

.selecao-de-personagens .lista-de-personagens .personagem.jogador-2-selecionado{
  border: 2px solid var(--corVermelhaPrincipal);
  animation: c-glowing-red .3s ease-in-out infinite;
  animation-direction: alternate;
}

.selecao-de-personagens .lista-de-personagens .personagem.personagem.jogador-2-selecionado:hover{
  animation: c-glowing-red .3s ease-in-out infinite;
  animation-direction: alternate;
}

.selecao-de-personagens .lista-de-personagens .personagem .tag{
  display: none;
  font-family: 'Times New Roman', Times, serif;
  position: absolute;
  top: 5px;
  left: 5px;
  color: var(--corPadrao);
  transition: opacity .3 ease-in-out;
  animation: text-glowing-blue .3s ease-in-out infinite;
  animation-direction: alternate;
}

.selecao-de-personagens .lista-de-personagens .personagem.personagem.selecionado .tag{
  display: block;
  animation: text-glowing-blue .3s ease-in-out infinite;
  animation-direction: alternate;
  }

.selecao-de-personagens .lista-de-personagens .personagem.personagem.jogador-2-selecionado .tag{
display: block;
animation: text-glowing-red .3s ease-in-out infinite;
animation-direction: alternate;
}