.main{
    display: flex;
    flex-direction: column;

}
.your-mind{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    margin-right: 0;
    border-bottom: 2px solid black;
}
.your-mind a{
    text-decoration: none;
}
.left-section{
    width: 70px;
    display: flex;
}
.left-section img{
    width: 50px;
    height: 50px;
    border-radius: 30px;
}
.middle-section{
    flex: 1;
    align-items: center;
    justify-content: space-between;
}
.middle-section input{
    padding: 14px;
    font-size: 18px;
    border: none;
    background-color: #3a3b3c;
    border-radius: 25px;
    width: 100%;
    min-width: 200px;
}
.middle-section input::placeholder{
    color: white;
    padding-left: 12px;
}
.right-section{
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    margin-left: 30px;
}
.right-section img{
    padding-top: 10px;
    height: 26px;
    margin-bottom: 0;
}
.right-section p{
    color: white;
    margin-top: 0;
    font-size: 15px;
}
.post{
    display: flex;
    flex-direction: column;
    position: relative;
}
.profile{
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.first-section{
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 6px;
    height: 70px;
    flex-shrink: 0;
}
.user-profile-picture{
    display: flex;
}
.user-profile-picture img{
    height: 60px;
    border-radius: 30px;
}
.time-name{
    display: flex;
    flex-direction: column;
    padding-left: 4px;
}
.time-name img{
    height: 14px;
}
.team-name{
    display: flex;
    align-items: center;
}
.team-name img{
    padding-left: 5px;
}
.time-name .duration{
    color: rgb(79, 78, 78);
    font-size: 14px;
}
.first-section p{
    margin: 0;
}
.first-section .name{
    color: white;
    padding-bottom: 3px;
}
.second-section{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    color: white;
    font-size: 44px;
    height: 70px;
    margin: 0;
}
.second-section .circle{
    height: 5px;
    border-radius: 5px;
    margin-right: 3px;
}
.cross{
    height: 15px;
    margin-left: 10px;
}
.message{
    height: max-content;
}
.message p{
    margin: 0;
    padding: 4px 6px;
    color: white;
    line-height: 20px;
}
.message .place{
    color: #2374e1;
}
.post-item{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
}
.item-to-post{
    width: fit-content;
    height: fit-content;
    overflow: hidden;
    display: flex;
}
.item-to-post img,video{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    overflow: hidden;
    padding: 2px;
}
.reactions{
    display: flex;
    justify-content: space-between;
    padding: 4px 6px;
}
.type_reaction{
    display: flex;
    align-items: center;
    justify-content: center;
}
.type_reaction button{
    background-color: rgb(45, 98, 223);
    border-radius: 10px;
    border: none;
    padding: 2px 4px;
    margin-left: 4px;
}
.reactions button img{
    height: 10px;
}
.reactions img{
    height: 18px;
}
.type_reaction p{
    color: white;
    font-size: 16px;
    margin: 0;
    padding-left: 4px;
    text-wrap: nowrap;
    padding-right: 10px;
}
.number_reactions{
    width: 130px;
    display: flex;
}
.number_reactions p{
    margin: 0;
    color: white;
    font-size: 16px;
}
.comments{
    display: flex;
    padding-right: 4px;
    justify-content: space-between;
    padding: 4px 10px;
    cursor: pointer;
}
.comment-box{
    padding: 4px;
    cursor: pointer;
    border-radius: 4px;
}
.comment-box:hover{
    background-color: #4a4a4b4a;
}
.comments button{
    padding: 6px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3a3b3c;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
.comments p{
    margin: 0;
    padding-left: 3px;
    color: white;
}
.comments img{
    height: 24px;
}
.people-to-add{
    display: flex;
    padding: 4px 4px;
}
.people-to-add p{
    color: white;
    font-size: 17px;
    margin: 0;
    background-color: #18191a;
}
.friends-container{
    position: relative;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    white-space: nowrap;
    padding-top: 20px 10px;
}
.friends-container::-webkit-scrollbar{
    display: none;
}
.friends{
    display: flex;
    padding: 20px 0;
}
.friend{
    width: 230px;
    height: 360px;
    display: flex;
    flex-direction: column;
    background-color: #3a3b3c;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    margin-right: 5px;
    margin-left: 5px;
    cursor: pointer;
}
.friend .profile-picture{
    position: absolute;
    top: 0;
    height: 250px;
    width: 100%;
    object-position: top;
    display: flex;
    flex-direction: column;
}
.profile-picture img{
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    border-radius: 10px;
}
.profile-name-container{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 251px;
    margin: 0;
}
.profile-name-container .profile-name{
    display: flex;
    margin: 0;
    color: white;
}
.profile-name-container .mutual-friends{
    display: flex;
    align-items: center;
    padding: 4px 2px;
}
.mutual-friends img{
    height: 32px;
    width: 32px;
    border-radius: 16px;
}
.mutual-friends p{
    margin: 0;
    color: rgb(208, 205, 205);
}
.add-friends{
    display: flex;
    margin-top: 4px;
    align-items: center;
    justify-content: center;
}
.add-friends button{
    background-color: transparent;
    border: 1px solid rgb(224, 218, 218) ;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 6px;
    width: 210px;
    padding-left: 40px;
    cursor: pointer;
}
.add-friends p{
    margin: 0;
    font-size: 20px;
    color: #0c32da;
}
.add-friends img{
    height: 20px;
    padding-right: 4px;
}
.all{
    text-decoration: none;
}
.view-more{
    margin: 0;
    padding: 6px 0;
    width: 100%;
    text-align: center;
    color: rgb(224, 218, 218);
}
.reels{
    display: flex;
    flex-direction: column;
    padding: 10px 6px;
}
.reels-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.reel-name{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.reel-name img{
    height: 20px;
}
.reel-name p{
    margin: 0;
    color: white;
    padding-left: 4px;
}
.options{
    width: 40px;
}
.options img{
    height: 5px;
}
.video{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    position: relative;
}
.video-reel{
    max-width: fit-content;
    height: fit-content;
    overflow: hidden;
    display: flex;
    position: relative;
    cursor: pointer;
}
.video-reel video{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    overflow: hidden;
    padding: 2px;
    border-radius: 20px;
    border: 1px solid;
    position: relative;
}
.video-reel .number-views{
    position: absolute;
    bottom: 25px;
    left: 20px;
    display: flex;
    align-items: center;
}
.number-views img{
    height: 15px;
}
.number-views p{
    margin: 0;
    color: white;
    padding-left: 2px;
}
.community{
    display: flex;
    padding: 10px 8px;
    border: none;
}
.community-description{
    display: flex;
    flex-direction: column;
}
.community-info{
    display: flex;
}
.community-dp{
    width: 60px;
}
.community-dp img{
    height: 50px;
    width: 50px;
}
.community-name{
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0;
}
.community-name p{
    margin: 0;
    line-height: 20px;
    text-wrap: nowrap;
}
.community-name strong{
    color: white;
}
.community-region{
    font-weight: bold;
    color: white;
}
.community-name .request{
    color: rgb(224, 218, 218);
}
.invitees-container{
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    border-bottom: 0;
}
.invitees-container::-webkit-scrollbar{
    display: none;
}
.invitees-dp{
    display: flex;
}
.invitees{
    background-color: #3a3b3c;
    width: 149px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px;
    border-radius: 4px;
    position: relative;
    border: 1px solid white;
}
.invitee-profile-picture{
    position: absolute;
    top: 0;
    height: 170px;
    width: 100%;
    display: flex;
}
.invitee-profile-picture img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 4px;
}
.invitee-profile-picture .decision-invite{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: gray;
    display: flex;
    align-items: center;
    opacity: 0.7;
    padding: 4px 6px;
}
.decision-invite img{
    height: 15px;
}
.invite-details{
    position: absolute;
    top: 176px;
    background-color: #3a3b3c;
}
.invite-details p{
    text-wrap: nowrap;
    overflow: hidden;
    margin: 0;
    line-height: 20px;
    color: rgb(220, 217, 217);
    font-size: 15px;
}
.invite-details .invite-name{
    color: white;
    font-size: 18px;
}
.invite-details button{
    padding: 8px 40px;
    font-size: 18px;
    background-color: #2374e1;
    border: none;
    color: white;
    margin-top: 2px;
    border-radius: 4px;
}
.more-friends{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}
.more-friends p{
    border: none;
    margin: 0;
    color: white;
    font-size: 17px;
}
.more-friends a{
    text-decoration: none;
}
.all-friends{
    padding: 5px 4px;
    border-radius: 8px;
    background-color: #3a3b3c;
    display: flex;
    width: 100%;
    margin: 6px 8px;
    
}
.all-friends div{
    display: flex;
    border: 0.5px solid rgb(164, 161, 161);
    width: 100%;
    flex: 1;
    background-color: #3a3b3c;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}
@media (min-width:1000px){
    body, .footer{
        width: 600px;
        border: 2px solid grey;
        border-radius: 2px;
        margin-left: 32%;
    }
}
