@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');

body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    font-size: 17px;
    color: #2d2d2d;
    background-color: #ffffff;
    padding: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Cytaty */
blockquote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #c0c0c0;
    padding-left: 1rem;
    margin: 1.5rem 0;
    background-color: #f9f9f9;
}

/* Kod inline */
code {
    font-family: 'Fira Code', monospace;
    background-color: #f3f3f3;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    color: #c7254e;
}

/* Blok kodu */
pre {
    font-family: 'Fira Code', monospace;
    background-color: #f6f8fa;
    padding: 1em;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 15px;
    color: #333;
}

/* Linki */
a {
    color: #2c609c;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

