body {
  background: linear-gradient(135deg, #fffbd5, #f9c6c9);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #222;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
}

#Btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

#Btn button {
  color: black;
  padding: 10px 16px;
  border: 1px solid #444;
  border-radius: 10px;
  background-color:white;
  font-weight: bold;
  transition: all 0.3s ease;
}

#Btn button:hover {
  background-color: #444;
  color: white;
}

main {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
}

#citat {
  font-size: 22px;
  margin-bottom: 10px;
}

#zdroj {
  font-size: 16px;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}


h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

#oblibeneCitaty {
  list-style: none;
  padding: 0;
}

#oblibeneCitaty li {
  background-color: #f0f0f0;
  border-left: 5px solid #f39c12;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  text-align: left;
}

footer {
  text-align: center;
  padding: 10px;
  color: #666;
  font-size: 14px;
}

