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(0, 0, 0,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 {
    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{
    color: #ffffff;
    font-family: 'Texturina';
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
}

.conteudo .descricao{
    color: #ffffff;
    font-family: "Nunito";
    line-height: 24px;
    text-align: justify;
}

.conteudo .logo{
    background-image: url("../image/one-piece-logo.png");
    background-size: cover;
    height: 130px;
    width: 290px;
}

.botoes{
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    min-height: 100%;
    width: 150px;
}

.botoes .botao{
    border: 2px solid red;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.722);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all;
}

.botoes .botao.selecionado{
    transition: all .3s ease-in;
    transform: scale(1.2);
}