body {
    background-color: #000000;
    overflow: hidden;
} 

main::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 80vh;
    background: linear-gradient(90deg, #000 25%, rgba(0, 0, 0, 0) 75%) no-repeat;
}

main .personagem {
    display: none;
    height: 100vh;
}

main .personagem.selecionado {
    display: block;
}

main .personagem .imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conteudo {
    position: absolute;
    top: 0;
    left: 120px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 450px;
    z-index: 1;
    
    justify-content: flex-end;
    padding-bottom: 150px;
}

.conteudo .nome-personagem {
    color: #ffffff;
    font-size: 48px;
    font-family: "PressGothic", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;

    letter-spacing: 3px;
}

.conteudo .descricao {
    color: #ffffff;
    font-family: "din1451", sans-serif;
    font-size: 16px;
    line-height: 24px;
    
    font-weight: 400;
}

.botoes {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    right: 0;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;

    gap: 10px;
}

.botoes .botao {
    border: none;
    background-color: #000000;
    width: 82px;
    height: 82px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50%;

    box-shadow: 0 0 10px #838080;
}


.botoes .botao img {
    border-radius: 50%;
    max-width: 82px;
}

.botoes .botao.selecionado {
    transform: scale(1.2);
    box-shadow: 0 0 10px #a0ee3b;
}

/* 

.botoes .botao.joel.selecionado {
    box-shadow: 0 0 10px #D9D9D9;
}

.botoes .botao.ellie.selecionado {
    box-shadow: 0 0 10px #db9595;
}

.botoes .botao.tess.selecionado {
    box-shadow: 0 0 10px #9eece6;
}

.botoes .botao.tommy.selecionado {
    box-shadow: 0 0 10px #a08cf8;
}

.botoes .botao.bill.selecionado {
    box-shadow: 0 0 10px #fcf489;
} 
    

*/












