html {
    height: 100%;
}

body {
    background-color: hsl(40deg 12% 90%);
    height: 100%;
    font-family: 'Labrada', serif;
    display: grid;
    grid-template-rows: auto min-content;
    color: hsl(40deg 12% 48%);
}

div {
    order: 1px dashed red;
}

.content_main {
    margin: 10%;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.leftbar {
    padding-right: 10px;
    border-right: 2px dashed hsl(40deg 21% 80%);
    border-style: dashed;
    text-align: right;
    line-height: 1.4;
    font-size: 16px;
}

.leftbar img {
    border: 1px solid hsl(40deg 21% 47%);

}

.leftbar a {
    color: inherit;
    text-underline-offset: 0.3em;
    text-decoration-color: lightblue;
}


.rightbar {
    padding-left: 10px;
    font-size: 18px;
}

.rightbar a {
    color: inherit;
    text-underline-offset: 0.3em;
    text-decoration-color: lightblue;
}

.rightbar section {
    border-top: 2px dashed hsl(40deg 21% 80%);
    padding-top: 10px;
    padding-bottom: 10px;
}

.rightbar h1 {
    color: hsl(40deg 21% 47%);
    font-size: 48px;
    font-family: 'Acme', sans-serif;
}

.rightbar h2 {
    color: hsl(40deg 21% 47%);
    font-size: 32px;
    font-family: 'Acme', sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
}

.rightbar ul {
    list-style-type: disc;
    margin-left: 1.5em;
    padding-top: 5px;
    padding-bottom: 10px;
    line-height: 1.5;
}

.rightbar em {
    font-style: italic;
}

header {
    color: hsl(40deg 21% 47%);
    text-align: left;
    /*
    padding: 25px 30px;
    color: aliceblue;
    background-color: rgb(164, 195, 196);
    */
    line-height: 1.2;
    padding-bottom: 10px;
}

header a {
    color: inherit;
    text-decoration: none;
}


footer {
    padding: 25px 30px;
    color: black;
    background-color: hsl(40deg 21% 71%);
    line-height: 1.2;
    font-size: 16px;
    text-align: left;
}

footer a {
    color: inherit;
}

footer img {
    color: inherit;
    vertical-align: middle;
}

.content p {
    line-height: 1.2;
    margin-top: 12px;
}

.post_meta {
    font-family: 'Acme', serif;
    border-radius: 10px;
    font-size: 12px;
    display:grid;
    grid-template-columns: min-content auto;
    line-height: 1.9;
    margin-top: 10px;
    padding:10px;
    background-color: hsl(40deg 21% 71%);
}

.post_meta .date {
    /* width: 150px; */
    white-space: nowrap;
    margin: auto 0;
    padding-right: 0.3em;
}

a.post_chip {
    border-radius: 5px;
    text-decoration: none;
    padding: 3px;
    color: white;
    white-space: nowrap;
    border-radius: 5px;
    background-color: hsl(40deg 12% 48%);
}