@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    font-family:  'Plus Jakarta Sans', sans-serif;
    background: hsl(210, 60%, 98%);
    font-size: 16px;
    color:  hsl(219, 12%, 42%)
}
.container{
    max-width: 860px;
    margin: 80px auto;
}
.wrapper{
    background-color: hsl(0, 0%, 100%);
    padding: 40px 30px 0;
    margin: 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 26px -13px rgba(0, 0, 0, .26);
}
.top-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.tittle{
    align-items: center;
    display: flex;
}
p.tittle-text{
    color:hsl(224, 21%, 14%);
    font-size: 28px;
    font-weight: 800;
}
p.num{
    color: #fff;
    background-color: hsl(219, 85%, 26%);
    padding: 3px 12px;
    border-radius: 5px;
    font-weight: 800;
    margin-left: 5px;
}
a.read{
    text-decoration: none;
    color: hsl(219, 14%, 63%);
    font-size: 18px;
}
.single-box{
    padding: 17px;
    margin: 12px 0;
    display: flex;
    align-items: center;
}
.single-box.unseen{
    background-color:  hsl(210, 60%, 98%);
    border-radius: 10px;
}
.avater img{
    width: 50px;
    margin-right: 15px;
}
a{
    text-decoration: none;
}
a.name{
    color: hsl(224,21%,14%);
    font-weight: 800;
}
a.post{
    color:  hsl(219, 12%, 42%);
    font-weight: 800;
}
a.group{
    font-weight: 800;
}
a.name:hover,
a.post:hover,
a.group:hover,
a.read:hover{
    color:  hsl(219, 85%, 26%);
}
span.dot{
    display: inline-block;
    background-color:  hsl(1, 90%, 64%);
    height: 9px;
    width: 9px;border-radius: 50%;
    margin-left: 7px;
    border-radius: 50%;
}
.massage{
    border: 2px solid hsl(205, 33%, 90%);
    padding: 12px;
    font-size: 18px;
    margin-top: 13px;
    border-radius: 5px;
}
.with-mssg{
    align-items: flex-start;
}
.left{
    display: flex;
    align-items: center;
}
.single-box.comment{
    justify-content: space-between;
}
.img-box img{
    width: 50px;
}
@media only screen and(max-width: 600px){
    body{
        font-size: 14px;
        line-height: 1.4;
    }
    .container{
        margin: 20px auto;
    }
    .wrapper{
        margin: 10px;
        padding: 25px 15px 0;
    }
    p.tittle-text{
        font-size: 20px;
    }
    p.num{
        padding: 1px 10px;
        margin-left: 5px;
    }
    a.read{
        font-size: 15px;
    }
    .massage p{
        font-size: 14px;
        padding: 9px;

    }
}































