body{
background: #c32222;
background: linear-gradient(0deg, rgba(195, 34, 34, 1) 0%, rgba(253, 187, 45, 1) 99%);


font-family: "DM Mono";
}
h1, h2, h3{
    font-size: 2.5rem;
    text-align: center;
    font-family: "DM Mono";
    color: orange;
}
h2{
    font-size: 1.5rem;   /* poznámka */
}
div.celyweb{
 max-width: 1300px;
 margin: auto;
 background: rgba(0,0,0,0.25);
 border: 5px solid black;
 border-radius: 50px 50px;
 font-family: "DM Mono";
}
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 */
font-family: "DM Mono";
}
div.menu a{
    width: 300px;
    height: 40px;
    background: #F7E17E;
    color: #BF4D34;
    font-size: 1.5rem;
    display: block;
    text-decoration: none;
    line-height: 40px;
    text-align: center;
    margin: 3px;
    border-radius: 999px;
    transition: 0.5s;
    border: solid rgb(169, 186, 157);
    border:solid #BF4D34;
    font-family: "DM Mono";
}
div.menu a:hover{
letter-spacing: 5px;
background: rgb(169,186,157);
color: white;
}
p{
    margin: 5px 10px;
    font-size: 1.1rem;
    color: white;
  
     font-family: "DM Mono";
}

p img{
    border: 5px solid white;
    float: left;
    margin: 10px;
    rotate: 5deg;
}
p img:hover{
    border: 5px solid orange;
    transition: 0.2s;
}
p a{
    color: orange;
    }
p a:hover{
    color:red 
    text-decoration: none;
}
a:hover{
    text-decoration: none;
    color: yellow;
    transition: 0.2s;
}
ul{ color: white;
    list-style-image: url(img/kolecko.png);
}
li a{
    color:orange;
}

ul ul{ 
    color: white;
    list-style-image: url(img/kriz.png);
}
img.mini{
    height: auto;
    width: 200px;
    border: 5px solid white;
    margin: 25px;
    

}  
img.mini:hover{
    border: 5px solid orange;
     transform: scale(1.1);
    transition: 0.5s;¨
}
fieldset{ 
   
    border: 1px solid black;
    border-radius: 30px 30px 30px 30px;
    background-color: white;
    width: 1200px;
    text-align: center;
    margin: 100px auto;
}
legend{
    border-radius: 20px 20px 20px 20px;
    font-size: 1.5rem;
    color: solid black;
    background: white;
    padding: 3px 10px;
    text-align: center;
    border-radius: 2px black;

}