*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    background-color: #333;
}

a
{
    text-decoration: none;
    color: inherit;
}

.container
{
    max-width: 600px;
    margin: 15px auto;
    background-color: #fff;
    border-radius: 6px;

}

header
{
    font-family: 'Instagram Sans';
    font-weight: 900;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 12px;
    border-bottom: 1px solid rgb(191 188 188);
    margin-bottom: 15px;
}
.stories_block
{
    padding: 20px 12px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    border-bottom: 1px solid rgb(191 188 188);

    /* gap: 10px; */
    /* overflow: hidden; */
}
.stories_block .storie_item
{
    flex: 0 0 auto;
    width: 12.5%;
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}
.stories_block .storie_item .strorie_img
{
    position: relative;
    z-index: 2;
}
.stories_block .storie_item .strorie_img::after
{
    content: '';
    display: block;
    width: 105%;
    height: 104%;
    border-radius: 50%;
    background-image: linear-gradient(to right top, #fff300, #ffd100, #ffae00, #ff8a00, #ff6400, #ff4d22, #ff3235, #ff0046, #ff006c, #ff0098, #ff00ca, #fe00ff);
    position: absolute;
    top: -3px;
    left: -2px;
    z-index: -1;
}
.stories_block .storie_item .strorie_img img
{
    border-radius: 50%;
    width: 100%;
    
}
.post_block
{
    padding: 20px 12px;
}
.post_block .post_item
{
    margin-bottom: 30px;
}
.post_block .post_item .post_header
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.post_item .post_header .post_left
{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 12px;
    font-family: verdana;
}
.post_header .post_left .p_user_img
{
    width: 100%;
    
}
.post_left .p_user_img img
{
    max-width: 45px;
    border-radius: 50%;

}
.post_footer .post_content
{
    overflow: hidden;
}
.post_footer .post_content .post_slide img
{
    width: 100%;
    height: 50vh;
}
.post_footer .post_content .content_pagination
{
    margin: 5px 0;
    text-align: center;
}
.post_footer .post_action .like
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.post_footer .post_action .tags_info
{
    font-weight: 700;
    margin-bottom: 10px;
}
.post_action  .content_info .user_name
{
    font-weight: 700;
    margin-right: 10px;
}