body{
background: rgb(247,200,243);
background: radial-gradient(circle, rgba(247,200,243,1) 0%, rgba(250,100,210,1) 100%);
height: 100vh;
 
}
h1{
    color: PaleVioletRed;
    font-size: 2.5rem;
text-align: center;
}
h2{
    font-size: 1.5rem;   /* poznámka */
    color: Black;
    text-align: center;
}

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

h4{
  text-align: center;  
}

div.hlavní{
max-width: 1280px;
border: 3px solid White; /* dotted, solid */
backround: rgba(255,255,255,0.45); /* rgba(0,0,0,0.66) */
margin: auto;
border-radius: 50px;
font-family: "EB Garamond", serif;
}
div.menu{ display: flex;
           flex-wrap: wrap;
            justify-content: space-evenly;
           align-content: center;
}
div.obsah{
}
div.menu a{
width: 300px;
height: 45px;
background: HotPink;
display: block;
margin: 3px;
color: white;
font-size: 1.6rem;
text-decoration: none;
text-align: center;
line-height: 45px;
border-radius: 15px;
transition: 0,5s;
font-family: "Kalam", cursive; /* font písma (google fonts) */
}

div.menu a:hover{
letter-spacing: 6px;
}

p{
margin: 15px; /* okraje */
}


ul{
font-size: 1.6rem;
color: black;
line-height: 22px; /* výška písma*/
letter-spacing: 2px; 
list-style-image: url(img/odr2.png);
}

ul ul{
font-size: 1.3rem;
color: black;
letter-spacing: 1px;
list-style-image: url(img/odr1.png);
font-style: italic;
}

ul ul ul{
font-size: 1.1rem;
color: black;
font-style: italic; /* kurzíva*/
letter-spacing: 1px; /* mezera mezi písmeny */
list-style-image: url(img/odr3.png);
}

img.mini{
float: left; /* strana stránky */
border: 1px solid gray; /* okraj obrázku */
margin: 10px;
}

a{
color: black;
}

a:hover{
text-decoration: none;
color: white;
transition: 0,5s;
}

img.galerie{
border: 5px solid white;
margin: 15px;
transition: 0,5s;
}

img.galerie:hover{
border: 5px solid pink;
border-radius: 15%;
}

fieldset{
    border:3px dotted white;
    border-radius: 25px;
    margin: 20px;
    text-align: left;
    background: rgba(255,255,255,0,3);
}

legend{
    text-align: center;
    background: rgba(255,255,255,0,8);
    padding: 5px 10px;
}

span{
    color: navy;
    font-weight: bold; /*tučnost*/
    
}













