body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

.uvod {
  height: 100vh; /* 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;
  background-color: #ffa7c8;
  align-items: center;
  justify-content: center;
  color: white;
}

.nadpis{
 margin-top: 10px;
 text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #ff9bc1;
  color: white;
  margin: 0%;
}

.obsah {
 text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* poloprůhledné pozadí pro lepší čitelnost textu */
  padding: 30px;
  border-radius: 10px;
}
.tlačítko {
  text-decoration: none;;
  font-weight: bold;
  border-radius: 6px;
  color: white;
  display: inline-block;
  padding: 6px 12px;
  background-color: #FF90BB; /* modré pozadí */
  margin-bottom: 40px
  transition: background-color 0.3s ease;
}

.tlačítko:hover {
  background-color: #f76aa0; /* tmavší modrá po najetí myší */
}
