*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
body{
    background-color: hsl(210, 60%, 98%);
    display: flex;
    flex-direction: column;
    place-content: center;
    align-items: center;
}
section{
    background-color: white;
    width: 80%;
    margin-top: 2rem!important;
    padding: 30px;
    box-shadow: 2px 2px 10px 2px rgb(97, 98, 99),
                2px 0px 4px 3px rgb(247, 250, 249);
}
header{
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    margin-bottom: 20px;
}
header >p {
    padding-top: 5px;
}
header >p:hover{
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.479);
    cursor: pointer;
}
.num{
    display: flex;
    gap: 20px;
}
#number{
    background-color: hsl(224, 69%, 32%);
    color: white;
    width: 30px;
    height: 20px;
    padding: 2px;
    margin-top: 4px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 0px 2px hsl(224, 21%, 14%);
}
.container{
    background-color: hsl(211, 68%, 94%);
    margin-bottom: 10px; 
    display: flex;
    gap: 10px;
    padding: 15px;
    border-radius: 5px;
    width: 100%;
}
.container:hover{
    box-shadow: 2px 2px 4px 2px hsl(219, 12%, 42%),
                1px 1px 1px 0px rgb(0, 0, 0);
    background-color: hsl(211, 68%, 94%);
}
.unread {
    background-color: red;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 3px;
}
.container .unread.active {
    display: none;
}
.text{
    padding-top: 5px;
}
.flex-it{
    display: flex;
    gap: 10px;
}
img{
    width: 2.8em;
    height: 2.7em;
}
p{
    color: hsl(219, 12%, 42%);
    font-weight: 500;
    font-size: 1rem;
}
a{
    text-decoration: none;
    color: hsl(224, 21%, 14%);
    font-weight: 600;
    font-size: 1.1em;
}
a:hover{
    font-style: italic;
    color: hsl(224, 69%, 32%);
}
h4{
    color: hsl(219, 14%, 63%);
    font-size:1em;
}
.group{
    color: hsl(224, 69%, 32%);
    font-weight: 700;
}
.private{
    display: block;
}
.dropdown{
    padding: 10px;
    width: 50%;
    border-radius: 7px;
    margin-left: 3em;
}
.flex{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.kimberly .text{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.attribution {
    margin: 1em 0;
    font-size: 21px;
    text-align: center; 
}
.attribution a {
    color: hsl(228, 45%, 44%);
    font-size: 16px;
}
.earl {
    color: rgb(165, 13, 165)!important;
    font-size: 18.5px;
}
@media screen and (max-width: 1157px) {
    section {
        width: 90%;
        margin-top: 5px;
        padding: 20px;
    }
    .container{
        padding: 5px;
        cursor: pointer;
    }
}
@media screen and (max-width: 1123px) {
    .dropdown{
        width: 85%;
    }
    a{
        font-size: 0.98em;
    }
    p{
        font-size: 1em;
    }
    img{
        width: 2.7em;
        height: 2.7em;
    }
}
@media screen and (max-width: 1109px) {
    section{
        padding-bottom: 1px;
    }
    .container{
        padding: 4px;
    }
    .dropdown{
        margin-left: 2.85em;
        padding: 5px;
    }
    p{
        font-size: 0.8em;
    }
    h4{
        font-size: 0.68em;
    }
}
@media screen and (max-width: 850px) {
    section{
        width: 80%;
    }
    .first{
        width: 70%;
    }
    img{
        width: 2.5em;
        height: 2.5em;
    }
    h1{
        font-size: 1.5em;
    }
}
@media screen and (max-width: 495px) {
    section{
        width: 100%;
        height: 100vh;
        margin-top: 0px;
        padding: 15px;
    }
    .container{
        padding: 5.4px;
        cursor: unset;
    }
    p{
        font-size: 0.78em;
    }
    a{
        font-size: 0.9em;
    }
    .dropdown{
        margin-left: 2.5em;
    }
    h1{
        font-size: 1em;
    }
    #number{
        margin-top: 0px;
        width: 25px;
        height: 15px;
        font-size: 0.78em;
    }
}