body{
background: #020024;
background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
background-position: center center;
background-size: cover;
background-attachment: fixed;
color: white;
font-family: "Comfortaa";
}
h1, h2{
    font-size: 2.5rem;
    text-align: center;
}    
h2{
    font-size: 1.5rem;   /* poznámka */
    text-align: center;
}

p{
    text-align: center;

}
h3{
    font-size: 1.9rem;   /* poznámka */
    text-align: center;
}

div.celyweb{
    max-width: 1200px;
    margin: auto;
    background: rgba(0,0,0,0.35);
    border: 10px solid white;
    border-radius: 0 60px;
}
div.menu{
display: flex;       /* to jak se zobrazuje element, elementy vedle sebe */
flex-wrap: wrap;        /* jestli se to muze zalomit nebo ne, bez wrapu se tlaci k sobe, s wrapem se da na dalsi radek */
justify-content: center;       /* horizontalni zarovnani */
align-items: center;        /* vertikalni zarovnani, jenom ve flexu */

}
div.obsah{
    padding: 0 50px;
}
div.menu a {
width: 280px;
height: 40px;
background: blue;      
color: white;
font-size: 1.5rem;
display: block;     /* vychozi rozlozeni elementu, zabere maximalni sirku timpadem dalsi jde pod nej */
text-decoration: none;      /* podtrhnuti textu */
line-height: 40px;      /* vyska radku */
text-align: center;
margin: 3px;
border-radius: 999px;
transition: 0.5s;
border: solid rgb(169,186,157);
}
div.menu a:hover{
letter-spacing: 2px;
background: rgb(169,186,157);
color: white;
}



p{
    margin: 15px 10px;
    color: white;
    font-size: 1.1rem;
    font-style: italic;
    
}
p img{
    border: 5px solid white;
    float: left;
    margin: 10px;
    rotate: 5deg;
}  
p img:hover{
    border: 5px solid orange;
}
p a{
    color: blue;
}
p a:hover{
color: lime;
text-decoration: none;
}
    ul {
 list-style:none;
  padding-left:15px;
  margin-left: 15px;
}
ul li {
  position: relative;
  padding-left: 50px;
}


ul li {
  position: relative;
  padding-left: 25px;
}



ul li::before {
  content: "☀"; /* insert your emoji of doom */
  font-size: 30px;
  color: #FA00C8;
 
}
ul ul li::before{
    content: "☞";
    color: #FA00C8;
    font-size: 20px;
    left: 0px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease, left 0.3s ease;/* smooth escape */
}

ul ul li:hover::before {
  transform: translateY(-50%) rotate(180deg); /* run left and spin */
  left: 0px;
}

ul ul li {
  transition: color 0.33s ease, transform 0.33s ease;
}

ul a{
    color:#81AFE3;
    text-decoration:none;
    
}
ul ul li:hover {
  color: #94BBE9;
  transform: translateX(30px);
  cursor: pointer;
}
img.mini{
    height:220px;
    width:220px;
    border:5px solid white;
    margin:15px;
    object-fit:cover;
    display:inline-block;
    vertical-align: top;
}
img.mini:hover{
border: 5px solid blue;
}

 fieldset{
     border. 1px dotted white;
     border-radius: 30px;
     margin: 15px;
 }
legend{
    font-size: 1.5rem;
    color: white;
    backround: #EEAECA;
    padding: 3px 10px;
}




