body{
    font-family:"Oxanium", cursive;
    background-color: black;
    color:  white;
}

body::before{
    content: "";
    background-image: url(../imagens/bg-desktop.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
}

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

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

.selecao-de-personagens .lista-de-personagens{
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    overflow: auto;
    height: 320px;
}

.selecao-de-personagens .lista-de-personagens button{
    background-color: black;
    color: white;
    width: 75px;
    height: 50px;
    box-shadow: 0px 0px 24px 5px #0271f7;
    font-size: 25px;
}

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

.selecao-de-personagens .personagens .titulo{
    font-size: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-bottom: 2px solid #47f4ff;
    width: 100%;
    text-align: center;
}


.lista-de-personagens .personagem img{
    width: 90px;
    height: 130px;

}

.lista-de-personagens .personagem.selecionado{
    box-shadow: 0px 0px 24px 5px #0271f7;
}

.personagem-selecionado{
    text-align: center;
    max-height: 600px;
}

.personagem-selecionado .personagem-grande{
    width: 430px;
    height: 430px;
}

.personagem-selecionado .nome-personagem{
    border-bottom: 2px solid #47f4ff;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.personagem-selecionado .descricao-personagem{
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-top: 20px;
    width: 420px;
}