

body {
    background: #FFFFFF;
    color: #0000FF;
    font-family: open-sans, monospace;
    max-width: 700px;
    margin: 0px auto;
    padding: 20px;
}

.header-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 30px;
}

.header-line h1 {
    text-align: left;
    margin-left: 0px;
    color: #0000FF;
    font-family: open-sans, monospace;
    font-size: 42px;
    padding-bottom: 10px;
    width: fit-content;
}

#today {
    color: #0000FF;
    font-size: 14px;
    margin-right: 15px;
    font-style: italic;
}

.post {
    color: #C1BAB4;
    margin-bottom: 40px;
    padding-left: 15px;
    border-left: 1.5px solid #0000FF; 
}

.date {
    font-size: 12px;
    font-style: italic;
    color: #0000FF; 
    margin-bottom: 5px;
}

.content {
    font-size: 20px;
    line-height: 1.5;
    color: #0000FF;        /* passe tout en bleu */
    font-weight: bold;     /* pour que ça ressemble à un titre */
    margin-bottom: 10px;
}

.details {
    margin-top: 10px;
    font-size: 15px;
    color: #47515A; 
    line-height: 1.5;
}


