body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Story section Design*/
.post-section{
    position: absolute;
    width: calc(75% - 200px);
    left: 200px;
    background-color: white;
    top: 0;
    min-height: 100vh; 
    padding: 20px;
    overflow:hidden;
    border-left: 1px solid #dfdbdb;
}
.stories{
    display: flex;
    align-items: top;
    justify-content: end;
    margin-right: 10%;
    
}
.story-image{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-position: center;
    border: 3px solid #e2336b;
    margin-left: 10px;
}
.story-image img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    object-position: center;
    
}
.story-image .add{
    position: absolute;
    display: flex;
    align-items: end;
    justify-content: center;
    height: 90px;
    
}
.story-image .add button{
    border: none;
    background-color: #0066ff;
    border: 2px solid white;
    border-radius: 50%;
}
/* post section Design*/
.post-section{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
}
.post{
    position: relative;
    padding-top: 0;
    margin-top: 10px;
    margin-right: 10%;
    background-color: whitesmoke;
    width: 500px;
}
.post .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    padding-left: 10px;
    padding-right: 10px;
}
.post .top .username{
    display: flex;
    align-items: center;
}
.post .top .username .profile-img{
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 5px;
    border: 2px #e2336b solid;
}
.post .top .username .profile-img img{
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: cover;
    margin-right: 5px;
}
.post .post-image{
    width: 100%;
}
.post .post-image img{
    width: 100%;
}
.share-section{
    display: flex;
    justify-content: space-between;
}
.share-section i{
    font-size: 30px;
    padding: 10px;
    padding-top: 15px;
}
.share-section i:hover{
    color: gray;
    transition: 0.2s;
}
.post .like{
    padding: 5px;
    padding-left: 10px;
    font-size: 15px;
    font-weight: bold;
}
.comment{
    width: 100%;
}
.comment .comment-input{
    width: 97%;
    border: none;
    font-size: 15px;
    outline: none;
    padding-left: 10px;
    background-color: whitesmoke;
}
.message-section{
    position: fixed;
    width: 25%;
    height: 100vh;
    right: 0%;
    background: white;
    padding-top: 30px;
    padding-left: 30px;
    border-left: 1px solid #dfdbdb;
}
.message-section .main{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 300px;
}
.message-section .title{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    
}
.message-section .right-sec{
    display: flex;
    justify-content: center;

}
.message-section .profile-photo{
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    border: 1px #dbd1d1 solid;
}
.message-section  img{
    border-radius: 50%;
    height: 40px;
    width: 40px;
}
.message-section .left-sec{
    padding-right: 10px;
    padding-top: 5px;
    
}
.message-section .left-sec a{
    text-decoration: none;
    color: #0099ff;
}
.message-section .information{
    margin: 40px 0;
    color: #918686;
}
.message-section .information .bottom{
    margin-top: 20px;
}
@media screen and (min-width:700px) and (max-width:1115px){
    .post-section{
        position: absolute;
        width: calc(100% - 70px);
        left: 70px;
        display: flex;
        justify-content: center;
        align-items: center; 
        margin-right: 100px;   
    }
    .message-section{
        display: none;
    }
    .stories{
        display: flex;
        align-items: top;
        justify-content: center; 
    }
}

@media screen and (min-width:1115px) and (max-width:1300px){
    .post-section{
        position: absolute;
        width: calc(75% - 70px);
        left: 70px;
        display: flex;
        justify-content: center;
        align-items: center;    
    }
    .stories{
        display: flex;
        align-items: top;
        justify-content: center; 
        margin-bottom: px;
    }
}

@media screen and (max-width:700px){
    .message-section{
        display: none;
    }
    .post-section{
        position: absolute;
        width: 100%;
        left: 0;
        padding-left: 25px;
        display: flex;
        justify-content: center;
        align-items: center; 
        
    }
    .post-section .post{
        width: 90%;
    }
    .stories{
        margin-left: 120px;
        margin-bottom: 15px;
        margin-top: 50px;
    }
    .story-image{
       
        width: 60px;
        height:60px;
    }
    .story-image img{
        width: 50px;
        height: 50px;    
    }
    .story-image .add{
        height: 80px;
        
    }
    .story-image .add button{
        border: none;
        background-color: #0066ff;
        border: 2px solid white;
        border-radius: 50%;
    }
}
