header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Styly pro navigační menu */
nav {
    background-color: #444;
    text-align: center;
    padding: 10px 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #666;
}

/* Styly pro obsah */
main {
    padding: 20px;
}

/* Styly pro seznam měst a jejich starosty */
.mesto {
    background-color: #f0f0f0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.mesto h3 {
    margin-top: 0;
}

.mesto p {
    margin-bottom: 10px;
}

/* Styly pro patičku */
footer {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
}
.mesto {
    background-color: #f0f0f0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.mesto h3 {
    margin-top: 0;
}

.mesto p {
    margin-bottom: 10px;
}

/* Styly pro fotky starostů */
.starosta img {
    width: 150px; /* Pevná šířka */
    height: 150px; /* Pevná výška */
    border-radius: 50%; /* Zaoblené rohy pro kruhový vzhled */
    object-fit: cover; /* Zachovává poměr stran a vyplní celou plochu, pokud je potřeba */
    transition: transform 0.3s; /* Plynulá animace při zvětšení */
}

/* Při najetí myší zvětšíme fotku */
.starosta img:hover {
    transform: scale(1.1); 
}