.story-container{
    position: relative;
    width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding: 15px 0;
}
.story-container::-webkit-scrollbar{
    display: none;
}
.stories{
    display: flex;
}
.story{
    width: 130px;
    height: 200px;
    margin: 3px 5px;
    background-color: black;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    border: 1px solid #3a3b3c;
}
.story .personal-profile-picture{
    position: absolute;
    overflow: hidden;
    display: flex;
    height: 100%;
    width: 100%;
}
.personal-profile-picture .create{
    position: absolute;
    top: 110px;
}
.personal-profile-picture img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: top;
    border-radius: 6px;
}
.create{
    position: absolute;
    left: 47px;
    top: 120px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 11px;
    border: 3px solid white;
    background-color: #2374e1;
    border-radius: 20px;
}
.create{
    margin: 0;
    font-size: 25px;
    color: white;
}
.story img{
    object-fit: cover;
    height: 90%;
    width: 100%;
    position: absolute;
    display: flex;
}
.story .personal{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    border-radius: 4px;
    background-color: #3a3b3c;
}
.personal .create-story{
    position: absolute;
    bottom: 0;
    font-size: 17px;
    left: 20px;
    color: white;
}
.story .story-today{ 
    position: absolute;
    width: 100%;
    height: 100%;
}
.story-today img,video,audio{
    display: flex;
    width: 100%;
    height: 100%;
    text-wrap: wrap;
    object-fit: cover;
    overflow: hidden;
    border-radius: 8px;
}
.story p{
    position: absolute;
    left: 5px;
    bottom: 4px;
    height: 50;
    font-size: 14px;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    text-wrap: wrap;
    margin-left: 0;
    text-align: start;
}