:root {
    --doc-height: 100%;
}

html, body {
    margin: 0px;
    padding: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    min-height: 100vh; /* fallback for JS load */
    min-height: var(--doc-height);
}

body a {
    color: #a0a0a0;
    text-decoration: underline;
}

body ul {
    list-style: none;
}

body ul li::before {
    content: "-";
    padding-right: 5px;
}

body ul, body ol {
    padding-left: 10px;
    line-height: 2rem;
}

h1 {
    color: #fc8200;
}

h2, h3, h4, h5, h6 {
    color: #b45e02;
}

.main {
    display: grid;
    grid-template-columns: 100vw;
    grid-template-rows: 90px auto 90px;
    min-height: 100vh; /* fallback for JS load */
    min-height: var(--doc-height);
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background-color: #1D1F23;
    color: white;
    padding: 10px;
    gap: 10px;
}

.header-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    gap: 10px;
}

.header-avatar {
    display: inline;
    border-radius: 50%;
}

.header-title {
    display: inline;
    margin: 0px;
    color: white;
}

.content {
    display: flex;
    flex-direction: column;
    align-content: start;
    justify-content: stretch;
    padding: 25px;
    background-color: black;
    color: white;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    background-color: #1D1F23;
    color: white;
    padding: 10px;
    gap: 5px;
}

.social-medias {
    display: flex;
    flex-direction: row;
}

.social-medias a {
    text-decoration: none;
    color: inherit;
}

.social-medias i {
    position: relative;
    top: -15px;
    margin: 10px;
}

.footer-signature {
    font-style: italic;
    font-size: x-small;
}

.post-date {
    font-style: italic;
    font-size: small;
}

.utterances {
    width: 100%;
    max-width: 100%;
}

.post-content img {
    max-width: 100%;
}

.post-content p {
    text-align: justify;
}