body{
    margin: 0;
    padding-top: 60px;
    background-color: #18191a;
    font-family: Arial, Helvetica, sans-serif;
    object-fit: cover;
    padding-bottom: 54px;
}
.story-owner{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
}
.first-section{
    display: flex;
    width: 50px;
    height: 50px;
    padding: 6px 8px;
}
.first-section img{
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.second-section{
    display: flex;
    flex: 1;
    align-items: center;
}
.second-section p{
    margin: 0;
    text-wrap: nowrap;
    font-size: 16px;
    padding-right: 10px;
}
.second-section img{
    height: 15px;
}
.profile-name{
    color: white;
}
.time{
    color: grey;
}
.last-section{
    width: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 12px;
}
.circles{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20px;
}
.circles img{
    height: 4px;
    border-radius: 3px;
    padding-top: 2px;
}
.x{
    display: flex;
    align-items: center;
}
.x img{
    height: 20px;
}

main{
    display: flex;
    padding: 4px 15px;
}
.story-itself{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}
.post-story{
    max-width: fit-content;
    max-height: fit-content;
    flex: 1;
    object-fit: cover;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin-top: 20%;
    margin-bottom: 20%;
}
.posted-story{
    position: relative;
}
.posted-story video,img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.reply-options{
    display: flex;
    position: fixed;
    bottom: 54px;
    left: 0;
    right: 0;
    padding: 4px 10px;
}
.reply-container{
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.reply-container::-webkit-scrollbar{
    display: none;
}
.replies{
    display: flex;
}
.first-reply{
    display: flex;
}
.first-reply input{
    flex: 1;
    min-width: 230px;
    padding: 13px 30px;
    border-radius: 50px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
}
.first-reply input::placeholder{
    font-size: 16px;
    color: white;
}
.second-reply{
    margin-left: 10px;
}
.reaction-container{
    padding: 10px;
    width: 30px;
    align-items: center;
    background-color: #3a3b3c;
    border-radius: 50%;
}
.reaction-container img{
    height: 24px;
}
.reaction-containers{
    padding: 10px;
    width: 30px;
    align-items: center;
    background-color: #2374e1;
    border-radius: 50%;
}



.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid black;
    display: flex;
    align-items: center;
    background-color: rgb(94, 92, 92);
    justify-content: space-between;
}
.footer p{
    margin: 0;
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.footer button{
    background-color: grey;
    border: none;
    padding: 6px 13px;
    border-radius: 20px;
    cursor: pointer;
}
.footer div{
    padding: 10px 8px;
}
.footer a{
    text-decoration: none;
}
@media (min-width:1000px){
    body, .footer, .story-owner{
        width: 600px;
        border: 2px solid grey;
        border-radius: 2px;
        margin-left: 32%;
    }
    .reply-container{
        width: 600px;
        margin-left: 32%;
    }
    body{
        padding-top: 0;
        padding-bottom: 0;
        height: 900px;
    }
    body{
        background-color: rgb(233, 231, 231);
    }
    main{
        background-color: #18191a;
        height: 900px;
    }
}