body {
  background: radial-gradient(circle, rgba(245,245,245,1) 0%, rgba(249,245,255,1) 14%, rgba(255,157,212,1) 100%);
  font-family: "Madimi One", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

h1, h2 {
  color: grey;
  text-align: center;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.3rem;
  color: green;
}

div.hlavni {
  max-width: 100%;
  border: 5px dashed #ffcce0; /* růžový rámeček */
  background-color: #ffe6f0;  /* světle růžové pozadí */
  margin: auto;
  border-radius: 30px;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;  /* přidáno, zabrání přetékání */
}


div.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: center;
  margin-bottom: 20px;
}

div.menu a {
  width: 300px;
  height: 45px;
  background: purple;
  color: white;
  font-size: 1.7rem;
  margin: 5px;
  border-radius: 20px;
  text-align: center;
  line-height: 45px;
  display: block;
  text-decoration: none;
  transition: 0.5s;
}

div.menu a:hover {
  letter-spacing: 6px;
  background: #8e44ad;
}

div.obsah {
  padding: 20px;
}

ul {
  font-size: 1.6rem;
  color: black;
  line-height: 22px;
  letter-spacing: 2px;
  list-style-image: url('img/odrazka1.png');
  padding-left: 30px;
}

ul ul {
  list-style-image: url('img/odrazka2.png');
  margin-left: 40px;
}

ul ul ul {
  font-size: 1.1rem;
  color: grey;
  font-style: italic;
}



img.mini {
  max-width: 100%;  /* fotky už nebudou pevně 250px, ale maximálně do šířky rodiče */
  height: auto;
  margin: 10px;
  border: 2px solid grey;
  border-radius: 10px;
  float: right;
  box-sizing: border-box;
}

a {
  color: purple;
}

a:hover {
  text-decoration: none;
  color: darkviolet;
  transition: 0.5s;
}

fieldset {
  border: 3px dotted grey;
  border-radius: 25px;
  margin: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.5);
}

legend {
  text-align: center;
  background: rgba(255,255,255,0.8);
  padding: 5px 10px;
  border-radius: 10px;
}

span {
  color: blue;
  font-weight: bold;
}

.img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: auto;
}

.container {
  background-color: white;
  border-radius: 30px;
  width: 85%;
  margin: 20px auto;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  box-sizing: border-box;
}
.galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 900px; /* nebo podle potřeby */
  margin: 0 auto; /* vystředění galerie */
}

.galerie a img {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, border-radius 0.3s ease;
  display: block;
}

.galerie a img:hover {
  border-color: pink;
  border-radius: 15px;

}