:root {
    --VeryDarkBlue: hsl(217, 19%, 35%);
    --DesaturatedDarkBlue: hsl(214, 17%, 51%);
    --GrayishBlue: hsl(212, 23%, 69%);
    --LightGrayishBlue: hsl(210, 46%, 95%);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: var(--VeryDarkBlue);
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Manrope';
    background-color: var(--LightGrayishBlue);
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 970px;
    border-radius: 10px;

}

.content .image img {

    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;

}

.content .text {
    margin: 0 10px 0 20px;
}

.content .text .share .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.content .text .share .pop {
    position: relative;
    margin-left: auto;
    margin-right: 32px;
}

.content .text .share .iconShare {
    background-color: var(--LightGrayishBlue);
    padding: 10px;
    border-radius: 50%;



}

.content .text h3 {
    margin: 14px 0;

}

.share {

    display: flex;
    gap: 11px;
    margin: 17px 0px;
    font-size: 13px;
    align-items: center;

}

.hide {
    display: none;
}

.share-hide {
    background-color: var(--VeryDarkBlue);
    display: flex;
    padding: 18px 33px;
    gap: 25px;
    align-items: center;
    border-radius: 10px;
    position: absolute;
    z-index: 5555;
    top: -80px;
    right: -300%;
    transition: .3s;
}

.left-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.share-hide::after {
    content: "";
    background-color: var(--VeryDarkBlue);
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: -13px;
    z-index: -1;
    rotate: 45deg;
    left: 43%;

}

.share-hide p {
    color: var(--DesaturatedDarkBlue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

@media (max-width:768px) {
    .content {
        flex-direction: column;
        width: 350px;
    }

    .content .image img {
        border-radius: 10px 10px 0 0;
    }

    .share-hide {
        top: auto;
        left: -285%;
        transform: translateX(-50%);
        bottom: -22px;
        width: 350px;
        padding: 23px;
        position: absolute;
        border-radius: 0 0 10px 10px;

    }


    .iconShare {
        position: relative;
        z-index: 6000;
        /* top: 12px; */

    }

    .share-hide::after {
        display: none;
    }
}