*{
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    min-height: 100vh;
    display: flex;
    font-family: "Open Sans", sans-serif;
    font-weight: 100;
    color: #1b1f21;
    background-color: #f8f8f8;
}

.layout {
    min-height: 100vh;
    width: 100%;
}

aside{
    width: 21.4%;
    background-color: #ffffff;
    border-right: 1px solid #bec1bb;
    min-width: 275px; 
}

.w-100{
    width: 100%;
}

.d-flex{
    display: flex;
}

.j-center{
    justify-content: center;
}

.j-start{
    justify-content: start;
}

.j-between{
    justify-content: space-between;
}

.a-center{
    align-items: center;
}

.a-start{
    align-items: start;
}

.col{
    flex-direction: column;
}

.px-25{
    padding-left: 25px;
    padding-right: 25px;
}

.profile{
    display: flex;
    height: 64px;
    justify-content: center;
}

.border-down{
    border-bottom: 2px solid #e8ebe4;
}

.profile-name{
    font-size: 16px;
    font-weight: 400;
    text-align: start;
}

.profile-state{
    font-size: 11px;
    color: #828485;
    font-weight: 300;
}

.profile img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #e8ebe4;
    margin-right: 10px;
}

.profile-icons{
    color: #828485;
    font-size: 20px;
    font-weight: 100;
    width: 55px;
    justify-content: space-between;
}

.new-chat{
    height: 132px;
}

.new-chat button{
    background-color: #A491D2;
    border: none;
    color : #ffffff;
    width: 65%;
    height: 48px;
    font-size: 16px;
    font-weight: 400;
}

.new-chat button:hover{
    background-color: #cdc3e6;
}

.new-chat button:focus{
    background-color: #bec1bb;
}

.chat-list{
    height: calc(100vh - 200px);
    overflow-y: auto;
    padding: 0;
}

.chat-list-item{
    flex-direction: column;
    height: 75px;
}

.chat-last-message{
    font-size: 15px;
    font-weight: 400;
    padding-right: 12px;
}

.chat-profile-pic{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e8ebe4;
    margin-right: 14px;
    margin-left: 29px;
}

main{
    background-color: #f8f8f8;
    height: 100vh;
    width: 100%;
}

.main-icon{
    width: 260px;
    height: 260px;
    border-radius: 5%;
    display: block;
}

.main-title{
    font-size: 47px;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
    font-family: "Roboto", sans-serif;
}

.main-text{
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    margin-top: 3px;
    display: inline;
    width: 500px;
    line-height: 1.5;
}

.main-text-new-chat{
     display: inline;
}

.f-roboto
{
    font-family: "Roboto", sans-serif;
}

.f-opensans
{
    font-family: "Open Sans", sans-serif;
}

