body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
header {
  background: #004080;
  color: white;
  padding: 2rem;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 2.5rem;
}
nav {
  margin-top: 1rem;
}
nav a {
  color: #ffdd57;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}
main {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}
.portrait {
  width: 200px;       /* velikost dle potřeby */
  height: 200px;      /* 1:1 poměr */
  object-fit: cover;  /* ořízne přebytečné části, zachová poměr 1:1 */
  border-radius: 50%; /* volitelné: kulatý portrét */
  display: block;
  margin-top: 1rem;
}
.hidden-link {
  display: block;       /* musí být block, aby šlo nastavit velikost */
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;   /* nebo fixed, pokud chcete pevnou pozici na stránce */
  top: 0;               /* místo na stránce – např. vlevo nahoře */
  left: 0;
}
