:root { 
    --Red: hsl(1,90%,64%);
    --Blue: hsl(219,85%,26%);
    --Verylightgrayishblue: hsl(210,60%,98%);
    --Lightgrayishblue1: hsl(211,68%,94%);
    --Lightgrayishblue2: hsl(205,33%,90%);
    --Grayishblue: hsl(219,14%,63%);
    --Darkgrayishblue: hsl(219,12%,42%);
    --Verydarkblue: hsl(224, 21%, 14%);
    }

body {
    background-color: var(--Lightgrayishblue2);
    color: var(--Grayishblue);
    font-size: 16px;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans';

    @media screen and (max-width: 768px) {
        font-size: 14px;
    }
}

main {
    background-color: var(--Verylightgrayishblue);
    min-width: 350px;

    @media screen and (min-width: 768px) {
        min-width: 600px;
        max-width: 50vw;
    }
}

h1 {
    color: var(--Verydarkblue);
    font-weight: 800;

    @media screen and (max-width: 768px) {
        font-size: 25px;
    }
}

button {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    background: transparent;
    color: var(--Grayishblue);
}

button:hover, .name:hover, a:hover{ 
    color: var(--Blue);
}

a {
    text-decoration: none;
}

.notification {
    background-color: transparent;
}

.name {
    font-weight: 800;
    color: var(--Verydarkblue);
}

.avatar {
    width: 2lh;
    height: 2lh;
}

.action {
    color: var(--Darkgrayishblue);
}

.number {
    background-color: var(--Blue);
    color: white;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-weight: 500;
}

.message {
    border: 1px solid var(--Lightgrayishblue2);
    border-radius: 5px;
    padding: 0.5rem;
    color: var(--Darkgrayishblue);
    background-color: var(--Verylightgrayishblue);
}

.message:hover {
    cursor: pointer;
    background-color: var(--Lightgrayishblue1);
}

.when {
    color: var(--Grayishblue);
    font-weight: 500;
}

.group {
    color: var(--Blue);
    font-weight: 800;
}

.post {
    color: var(--Darkgrayishblue);
    font-weight: 800;
}

.new_notification {
    background-color: var(--Lightgrayishblue1);
}

.picture_not {
    height: 50px;
    width: auto;
}

.new {
    background-color: var(--Lightgrayishblue1);
}