/* Reset základního stylu pro všechny prohlížeče */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Základní styl pro tělo stránky */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
}



/* Styl pro kontejner s obsahem */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Obrázek článku */
.article-img {
    width: 20%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Datum publikování článku */
.date {
    font-size: 0.9em;
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* Sekce článku */
.article-section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Nadpisy v článku */
.article-section h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Text v článku */
.article-section p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 50px;
}

/* Zvýrazněné texty */
.marked-text {
    background-color: #f39c12;
    color: white;
    font-weight: bold;
    padding: 3px 5px;
    border-radius: 4px;
}



/* Specifika pro článek */
.article-1 .article-img {
    width: 40%;
    margin-bottom: 10px;
}

.article-1 .article-section p {
    line-height: 150%;
}

/* Media queries pro responsivní design */
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
    }

    header h1 {
        font-size: 2em;
    }

    .article-section h2 {
        font-size: 1.5em;
    }

    .article-section p {
        font-size: 1em;
    }

    .article-img {
        width: 100%;
    }
}

