body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 20px;
  text-align: center;
}

a {
  color: #4da6ff;
  text-decoration: none;
}

a:hover {
  color: #80bfff;
  text-decoration: underline;
}

.header a {
  margin: 0 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  color: #b1b1b1;
}

.header p {
  margin: 0 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
}

.content {
  display: flex;
  justify-content: center;  /* Horizontální centrování */     /* Vertikální centrování */
  flex-grow: 1;             /* Obsah expanduje vertikálně */
}

.content p {
  max-width: 600px;
  text-align: left;         /* Zarovnání vlevo */
  margin: 0 auto;           /* Umožní automatické centrování */
}

.contacts {
  justify-content: center;
  align-items: center;
  padding-left: 30%;
  padding-right: 30%;
  padding-top: 50px;
  font-size: 50px;
}

.footer {
  text-align: center;
  padding: 10px;
  margin-top: auto;         /* Udrží patičku dole, pokud je málo obsahu */
}

.footer a {
  color: rgb(138, 138, 138);
  text-decoration: none;
  font-size: 9px;
}
