*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #95b1e1;
    overflow-x: hidden;
    font-family: monospace;
}
.nav-bar{
    width: 100vw;
    height: 60px;
    background-color: aliceblue;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;
}
.left{
    margin-left: 50px;
    font-size: 18px;
}
.right{
    margin-right: 50px;
}

ul{
    display: flex;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    margin-left: 30px;
    font-size: 15px;
}
a:hover{
    transition: 0.3s ease-in-out;
    opacity: 0.8;
    color: rgb(22, 182, 193);
}
.align{
    margin-top: 100px;
    display: flex;
    justify-content: space-evenly;
}
.lefted{
    background-color: rgb(31, 94, 158);
    width: 20%;
    height: auto;
    position:fixed;
    z-index: 100;
    left: 5%;
}

.middle{
    /* background-color: rgb(148, 92, 19); */
    width: 40%;
    height: 100vh;
    margin: 0 auto;
}
.righted{
    background-color: rgb(73, 42, 1);
    width: 20%;
    height: 100vh;
    position:fixed;
    z-index: 300;
    right: 5%;
}

.profile-info{
    background-color: rgb(129, 129, 197);
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
}

.imag{
    width: 40%;
    height: 40%;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 40px;
    border: 5px solid white;
}
.profile-name,.job{
    color: white;
    text-align: center;
}
.profile-name{
    margin-top: 8px;
}
.job{
    padding-bottom: 8px;
    border-bottom: 0.5px solid white;
}
.following,.following-count,.follower,.follower-count,.suggestions{
    text-align: center;
    color: white;
    margin-top: 9px;
}
.following-count{
    padding-bottom: 8px;
    border-bottom: 0.5px solid white;
}
.follower-count{
    padding-bottom: 8px;
    border-bottom: 0.5px solid white;
}
.suggestions{
    text-align: left;
    padding-left: 10px;
    padding-bottom: 10px;
    border-bottom: 0.5px solid white;
}
.friend-list{
    background-color: aliceblue;
    margin: 10px 7px;
    border-radius: 5px;
    display: flex;
    position: relative;
}
.frnd{
    aspect-ratio: 3/3;
    object-fit: cover;
    border-radius: 50%;
    margin: 10px;
}
.alignment{
    display: flex;
    flex-direction: column;
    margin-top: 13px;
}
.friend-name{
    font-size: 14px;
}
.adding-friends-container{
    display: flex;
    flex-direction: row;
}
.add-friend{
    background-color:darkcyan;
    color: white;
    padding: 5px 7px;
    margin-top: 3px;
    border-radius: 5px;
    display: flex;
    font-size: 10px;
    cursor: pointer;
}
.delete{
    margin-left: 10px;
    margin-top: 3px;
    font-size: 10px;
    background-color: maroon;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.cross-friend{
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
}
.what-in-mind{
    padding: 20px;
    width: 100%;
    height: auto;
    background-color: #e79090;
    border-radius: 20px;
}
.like-count{
    margin-left: 20px;
    color: white;
    margin-top: 5px;
    padding-bottom: 10px;
    border-bottom: 0.5px solid white;
}
.personme{
    width: 10%;
    height: 10%;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}
.whatmind{
    width: 100%;
    height: 45px;
    border-radius: 20px;
    border: none;
    padding: 0 20px;
    outline: none;
    margin-bottom: 10px;
    font-size: 14px;
}
.uploadall{
    display: flex;
}
.photo{
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 130px;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    color: white;
    position: relative;
    margin: 5px;
}
.video{
    background-color: black;
    text-decoration: line-through;
    color: white;
    cursor:auto;
}

.photo:hover{
    background-color: white;
    color: black;
}
.video:hover{
    background-color: black;
    text-decoration: line-through;
    color: white;
}
.both-upload{
    display: flex;
    justify-content: center;
}
.photo-img{
    padding-right: 10px;
    
}
.posts-feedline{
    background-color: #e79090;
    margin-top: 20px;
    border-radius: 20px;
    color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.personme1{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}
.post-name{
    display: flex;
    align-items: center;
}
.persone-name{
    letter-spacing: 1.2px;
    font-size: 14px;
}
.post-text{
    margin-top: 10px;
    font-family:sans-serif;
    font-size: 14px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
#fileUpload{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}
#fileUpload::before{
    content: "";
}
.whole-user-info{
    position: relative;
    padding: 20px;
}
.fa-ellipsis-v{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.user-post-image{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.marvel{
    height: auto;
    max-height: auto;
}
.like-counts{
    display: flex;
    align-items: center;
    margin:5px 0;
}
.hover{
    width: 31%;
    padding: 10px 40px;
    border: none;
    background: none;
    color: white;
    font-size: 13px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px 2px 0px 2px;
    display: flex;
    align-items: center;
}
.hover1:hover{
    background-color: beige;
    color: darkslategrey;
}
.likes-comment-share{
    border-top: 0.5px solid white;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: space-around;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.last-comments{
    margin-left: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    width: 80%;
    word-wrap: break-word;
}
.lcs{
    margin-right: 4px;
}
.comment-box{
    display: flex;
    align-items: center;
}
.comment-section{
    color: black;
}
.hidden{
    display: none;
}
.show{
    display: block;
}
.commnt-section{
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: antiquewhite;
    padding: 7px 15px;
    margin-left: 40px;
    font-size: 12px;
    width: 90%;
}
.borderpadding{
    padding-left: 30px;
    background-color: aliceblue;
    border-left: 1px solid black;
    border-right: 1px solid black; 
    padding: 20px;
}
@media only screen and (max-width: 600px) {
    .lefted{
        display: none;
    }
    .righted{
        display: none;
    }
    .middle{
        width: 100%;
    }
    .m-logo{
        font-size: 20px;
        color: #5a4cdb;
    }
    .left{
        margin-left: 20px;
    }
    .nav-bar{
        justify-content: space-between;
    }
    a{
        font-size: 12px;
        margin-left: 10px;
        font-family: Arial, Helvetica, sans-serif;
    }
    .right{
        margin-right: 20px;
    }
    .what-in-mind{
        border-radius: 0;
    }
    .align{
        margin-top: 80px;
    }
    body{
        background-color: white;
    }
    .posts-feedline{
        border-radius: 0;
    }
    .photo{
        border-radius: 0;
        margin: 4px;
        width: 100px;
        height: 40px;
        padding: 5px 15px 5px 10px;
        font-size: 15px;
    }
    .both-upload{
        display: flex;
        justify-content: space-evenly;
    }
    .video{
        width: 120px;
    }
    .comments img{
        width: 30px;
        height: 30px;
    }
    .hover{
        width: 33%;
        font-size: 12px;
        padding: 5px 20px;
    }
    .likes-comment-share{
        display: flex;
        margin: 10px 30px;
        width: 80%;
    }
    .lcs1,.lcs2,.lcs3{
        margin-right: 5px;
    }
    .comments{
        padding-left: 10px;
    }
    .borderpadding{
        
    border-left: 1px transparent;
    border-right: 1px transparent; 
    }
    .photo-img{
        padding-right: 5px;
    }

}
