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

    main .place .image {
        height: 85%;
        object-position: bottom;
    }

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

    .content .placeName {
        font-size: 30px;
    }

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

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

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

@media (max-width: 500px) {

    .content {
        top:-20%;
    }

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

@media (max-width: 450px) {
    .content {
        top:-15%;
    }

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

@media (max-width: 400px) {
    .content {
        top:-12%;
    }

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