body {
    background-color: hsl(211, 68%, 94%);
    font-family: Plus Jakarta Sans;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;  
}

.flex-container {
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    
}
.top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.marker {
    color: rgb(11, 11, 151);
}
.marker:hover {
    cursor: pointer;
    color: rgb(69, 69, 246);
}
.unread, .read {
    display: flex;
    flex-direction: row;
    
    align-items: center;
    border-radius: 10px;
    margin: 5px;
}

img {
    margin: 10px;
}
.side-img {
   align-items: end;
   margin-left: 100px;
}

.unread {
    background-color: hsl(211, 68%, 94%);
    border-radius: 10px;
    padding: 3px;
}

.msg {
    border: 2px solid hsl(211, 68%, 94%);
    padding: 10px;
}
.msg:hover {
    background-color: hsl(211, 68%, 94%);
    cursor: pointer;
}

.num {
    background-color: hsl(238, 93%, 47%);
    color: white;
    border-radius: 5px;
    padding-right: 5px;
    padding-left: 5px;
    margin: 5px;
    font-size: medium;
}


/* Styling for mobile device */
@media only screen and (max-width: 375px) {
    .flex-container {
        width: 100%;
    }
    P {
        font-size: 0.7em;;
    }
}
