/* Základní styly pro články */


h1, h2 {
    color: #333;
}

/* Styly pro obrázky s popiskem */

.image-container {
    border: 1px solid #ccc; /* Rámeček kolem obrázku */
    border-radius: 8px; /* Zaoblené rohy */
    padding: 8px;
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;
    margin: 10px 0px;
    box-sizing:border-box;
    background-color: whitesmoke;
}

.image-container img {
    max-width: 100%;    
    max-height: 500px;
    height: auto;
    border-radius: 6px; /* Zaoblené rohy pro samotný obrázek */
}

.image-container figcaption {
    margin-top: 8px;
    font-style: italic;
    color: #555;
}


ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}
