body {
    font-family: "oxanium", cursive;
    background-color: rgb(0, 0, 0);
    color: aliceblue;
}
body::before{
    content: "";
    background-color: black;
    background-image: url(image/desktop6.png);
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    width: 100%;
    height: 110%;
    position: absolute;
    z-index: -1;
    opacity: 0.1;
}

.cabecalho {
    display: flex;
    justify-content: center;

}

.logo {
    width: 160px;
    border-radius: 10%;
    margin-bottom: 10px;
}

.selecao-de-personagem {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: calc(100vh - 152px);
    justify-content: center;
  
}

.selecao-de-personagem .lista-de-personagem {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;

}

.selecao-de-personagem .personagens {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 585px;
    gap: 25px;
}

.selecao-de-personagem .personagens .titulo {
    font-size: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(201, 19, 19);
    width: 100%;
    text-align: center;

}

.selecao-de-personagem .personagem img {
    width: 123px;
    border: 1px solid white;
    border-bottom: 3px solid rgb(163, 14, 14);
    margin-bottom : -5px
}

.selecao-de-personagem .personagem.selecionado {
    box-shadow: 0px 0px 24px 5px rgb(247, 11, 11);

}

.personagens-selecionados {
    
    text-align: center;
    max-height: 530px;
    
}
.personagens-selecionados .personagem-grande{
    height: 430px;
}
.personagens-selecionados .nome-personagem{
    border-bottom: 3px solid #c71407;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.personagens-selecionados .descricao-personagem{
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin-top: 15px;
    width: 420px;
}

