<html>
<head>
<style>

body, html {
  margin: 0;
  padding: 0;
  text-align: center;
  height: auto;
}

body {
  height: 100vh; /* Výška 100 % okna */
  display: flex;
  background-color: #ffa7c8;
  }

h1 {
  color: white;
  text-align: center;
}

p {
color: white;
}

.uvod{
gap: 15px;
justify-content: center;
  align-items: center;
  justify-content: center;
}

.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ší */
}
</style>
</head>
<body>


</body>
</html>

