body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}


.nadpis {
  margin-top: 10px;
 text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #ff9bc1;
  color: white;
  margin: 0%;
 }

.uvod { background-color: #ff9bc1; color: white; align-items: center; 
    margin: 0%;
 text-align: center;
  height: auto; /* Výška 100 % okna */
  background-size: cover; /* roztáhne obrázek přes celou plochu */
  background-position: center; /* zarovná obrázek doprostřed */
  background-repeat: no-repeat; /* nezopakuje obrázek */
  display:flex
 
  align-items: center;
  justify-content: center;
  color: white;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 0px;
 }

  .tlačítko {
    margin-top: 10%;
  display: inline-block;
  padding: 6px 12px;
  background-color: #FF90BB; /* modré pozadí */
  color: white;
  text-decoration: none; /* odstraní podtržení */
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-bottom: 40px;
}

.tlačítko:hover {
  background-color: #f76aa0; /* tmavší modrá po najetí myší */
}