@media (max-width: 769px) {
    main::after {
        background: linear-gradient(0deg, #000 20%, rgba(0, 0, 0, 0.00) 65%) no-repeat;
        width: 100vw;
    }

    main .character .image{
        height: 85%;
    }

    .content{
        justify-content: flex-end;
        left: 0;
        top: -20%;
        max-width: 100vw;
        padding: 30px;
    }

    .content .character-name{
        font-size: 36px;
    }

    .content .description{
        max-width: 500px;
    }

    .buttons{
        flex-direction: row;
        align-items: flex-end;
        width: 100%;
        padding: 30px;
    }

    .buttons .button img{
        max-width: 60px;
    }
}

@media (max-width: 425px) {
    main .character .image {
        height: auto;
    }

    .content .logo{
        width: 170px;
        height: 75px;
    }

    .content {
        top: -30%;
    }

    .content .character-name {
        font-size: 24px;
    }

    .buttons {
        padding: 20px;
        top: -20%;
    }

    .buttons .button img{
        max-width: 50px;
    }

}

