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

main::after{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 80vw;
    background: linear-gradient(-233deg, #000 40%, rgba(5, 5, 5, 0) 65%) no-repeat;

}

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

main .personagem.selecionado{
    display: block;
}

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

.conteudo{
    /* background-color: orangered; */
    position: absolute;
    top: 0;
    left: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    max-width: 380px;
    z-index: 1;
}

.conteudo .nome-personagem{
    /* background-color: green; */
    color: #ffff;
    font-size: 48px;
    font-family: secular one;
    font-weight: 400;
    margin-bottom: 20px;
}

.conteudo .descricao{
    /* background-color: aqua; */
    color: #ffff;
    font-family: Rubik;
    font-size: 16px;
    line-height: 24px;
}

.conteudo .logo{
    /* background-color: chartreuse; */
    background-image: url(../imagens/one-piece-logo.png);
    background-size: cover;
    height: 100px;
    width: 230px;
    margin-bottom: 35px;
}

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

.botoes .botao{
    border: none;
    background: #000000;
    cursor: pointer;
    border-radius: 50%;
}

.botoes .botao img{
    border-radius: 50%;
}

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