
/* === Sticky footer === */
html {
    height: 100%;
}

body {
    min-height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
}

footer {
    grid-row-start: 2;
    grid-row-end: 3;
}

/* === End: Sticky footer === */


/* === Prose modifikacije === */
.prose,
.prose b,
.prose strong,
.prose i,
.prose em,
.prose blockquote{
    font-family: 'Noto Sans', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif';
    color: #374151; /* gray-700 */
}
.prose pre{
    color: #374151; /* gray-700 */
}

.prose h1,
.prose h2,
.prose h3,
.prose h4{
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', 'Times', 'serif';
    font-weight: normal;
    color: #1F2937; /* gray-800 */
}
.prose h5,
.prose h6{
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', 'Times', 'serif';
    font-weight: bold;
    color: #1F2937; /* gray-800 */
}

.prose a{
    text-decoration: none;
    color: #78350F; /* yellow-900 */
}
.prose a:visited {
    text-decoration: none;
    color: #78350F; /* yellow-900 */
}
.prose a:hover,
.prose a:focus,
.prose a:active {
    text-decoration: underline;
    color: #B45309; /* yellow-700 */
}
/* === End: Prose modifikacije === */




.lity{
    background: rgba(0,0,0,0.7);
}






@media print {
    header,
    footer{
        display: none;
    }

    body{
        margin: 0.5cm 1cm;
        color: black !important;
        text-align: center;
    }
}