*{
    margin: 0;
    padding: 0;
}

.mainSec{
    height: 100vh;
    width: 100%;
    display: flex;
}

.leftSec{
    width: 50%;
    height: 100vh;
    background-image: url(../Images/defcover.jpg);
    background-position: right;
    background-size: cover;
}

.rightSec{
    width: 50%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

.rightSec h1 {
    background-color: green;
    color: #fff;
    text-align: center;
    font-weight: 300;
    border-radius: 5px;
}

.myBtn{
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
}

.rightSec a{
    text-align: center;
}

/* home section */

.homeSection{
    display: flex;
    background: #EFEAE2;
}


.tweetSection{
    width: 43%;
    height: 100vh;
    border-left: 1px rgba(128, 128, 128, 0.168) solid;
    border-right: 1px rgba(128, 128, 128, 0.168) solid;
}

.homeLeft{
    width: 24%;
    height: 100vh;
}

.homeRight{
    width: 33%;
    height: 100vh;
    background-color: #EFEAE2;
}

.profilePlaceholder{
    height: 50px;
    width: 50px;
    background-color: black;
    border-radius: 50%;
}

.tweetBox{
    display: flex;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.tweetBox input{
    width: 90%;
    margin-left: 20px;
    border: none;
    outline: none;
    font-size: 20px;
}


.tweetButtons{
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px rgba(128, 128, 128, 0.168) solid;
    padding-bottom: 20px;
    font-weight: bold;
}

.tweetButtons button{
    border-radius: 20px;
    padding-left:20px;
    padding-right: 20px;
}

.topTweetBox{
    margin-left: 20px;
    margin-top: 20px;
    margin-right: 20px;
}


.homeLeft img{
    height:30px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.homeLeft{
    padding-left: 50px;
    padding-right: 50px;
}

.homeLeft button{
    width: 100%;
    border-radius: 50px;
}


.bottomProfileCont{
    display: flex;
    margin-top: 50px;
}

.bottomProfile p{
    margin: 0;
    padding: 0;
}

.bottomProfile{
    margin-left: 10px;
}


.bottomProfileCont:hover{
    background-color: rgba(128, 128, 128, 0.124);
    border-radius: 30px;
    cursor: pointer;
    
}

#username{
    font-weight: bold;
}


.homeBtns{
   text-decoration: none;
   color: black;
   font-size: 20px;
}


.theLogo{
    display: none;
}

.midMenu div{
    margin-bottom: 12px;
    margin-top: 12px;
}


#profUserNamed{
    margin-top: 0;
    padding-top: 0;
}

#profName{
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 23px;
    font-weight: bolder;
}

#allTweetsContainer{
    overflow-y: scroll;
    height: 80vh;
}


.profilePlaceholderHome{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.profilePlaceholderHome img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.moreImage{
    height: 30px;
    cursor: pointer;
}


.likeIcon{
    height: 20px;
    cursor: pointer;
}

.textBox{
    position: fixed;
    bottom: 0px;
    width: 43%;
    border-top: rgba(128, 128, 128, 0.124) 1px solid;
}


.messImgCont{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.messImgCont img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
   
}

#showAllUsers{
    padding-top: 50px;
    
}

.messUserCont{
    display: flex;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(128, 128, 128, 0.168);
   
}


.messUserCont:hover{

background-color: rgba(220, 220, 220, 0.271);
}


.messUserCont h6{
    margin-left: 20px;
}


.messUserCont p{
    margin-left: 20px;
}


.myMsgSent{
    background-color: greenyellow;
    position: absolute;
    right: 0;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    margin: 20px;
}


.myMsgReceived{
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    margin: 20px;
    background-color: rgba(128, 128, 128, 0.325);
    width: fit-content;
}

