body{
background: black;
background: #000000;
background: radial-gradient(circle,rgba(0, 0, 0, 1) 35%, rgba(10, 199, 145, 1) 100%); 


 background-position: center center;
 background-size: cover;
 background-attachment: fixed;



color: darkred;
font-family: "Goldman";
    
}
h1, h2{
    font-size: 2.5rem;
    text-align: center;
}
h2{
    font-size: 1.5rem;   /* poznámka */
}
div.celyweb{
    max-width: 1200px;
    margin: auto;
    background: rgba(255,255,255,0.7);
    border: 5px solid darkred;
    border-radius: 0 50px;
    padding-bottom: 25px;
}
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: space-evenly;       /* horizontalni zarovnani */
align-items: center;        /* vertikalni zarovnani, jenom ve flexu */


}
div.menu a{
    width: 270px;
    height: 40px;
    background: black;
    color: darkred;
    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 white;
    border:solid white;
}
div.menu a:hover{
letter-spacing: 5px;
background: solid red;
color: white;
}

p{
    margin: 5px 10px;
    font-size: 1.1rem;
    color: black;
    font-style: arial;
}
p img{
    border: 5px solid #C22110;
    float: left;
    margin: 10px;
    rotate: 5deg;
}

p img:hover{
    border: 5px solid red;
}

p a{
    color: #C22110;
}

p a:hover{
    color: red;
    text-decoration: none;
}
ul{
    color: darkred;
    list-style-image: url(img/od2c.png);
}
ul ul{
    color: blue;
    list-style-image: url(img/od1k.png)
}

a{
     color: darkblue;
}
a:hover{
    text-decoration: none;
    color: red;
    transition: 0.2s;
}

img.mini{
    height: 180px;
    width: auto;
    border: 5px solid white;
    margin: 25px;
}

img.mini:hover{
    border: 5px solid darkred;
    transform: scale(1.1);
    transition: 0.5s;
}
fieldset{
    border: 1px solid darkred;
    border-radius: 30px;
}

legend{
    font-size:1.5rem;
    color: white;
    background: darkred;
    padding: 3px 10px;
}










