body {
    margin: 0px;
    background: rgb(212,21,175);
    background: linear-gradient(163deg, rgba(212,21,175,1) 0%, rgba(146,5,236,1) 100%);

    /* height: 100vh; */
    font-family: "Playwrite HU";
}

h1,
h2 {
    color: darkblue;
    font-size: 2.5rem;
    text-align: center;
    font-family: "Playwrite HU";
}

h2 {
    font-size: 1.4rem;

    /* poznámka */
}

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

a {
    color: purple;
    text-decoration: none;
}

a :hover {
    text-decoration: none;
    color: red;
    transform: scale(1.1);
    transition: 0,5s;
}

.hlavni {
    max-width: 1280px;
    margin: auto;
    border: 5px solid white;

    /* solid, dotted */
    background: rgba(255,255,255,0.45);

    /* rgba(0,0,0,0.65) */
    border-radius: 30px;

    /* border-radius: 25px; */
    height: auto;
    width: 100%;
}

.horni-obrazek img {
    border-radius: 30px 30px 0 0;
    height: auto;
    width: 100%;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
}

.menu a {
    width: 300px;
    height: 45px;
    background: lightblue;
    display: block;
    text-align: center;
    line-height: 45px;
    text-decoration: none;
    font-size: 1.6rem;
    color: darkblue;
    border-radius: 15px;
    margin: 3px;
}

.menu a:hover {
    letter-spacing: 5px;
    font-size: 1.8rem;
    transition: 0.5s;
    color: white;
    text-decoration: none;
    color: red;
    transform: scale(1.1);
}

.menu a :active,
.aktivni {
    border: 3px solid red;
}

.obsah {
    text-align: center;
}

.galerie {
    text-align: center;
}

.galerie a img {
    border: 5px solid white;
    transition: 0.5s;
    margin: 10px;
    width: 300px;
}

.galerie a img:hover {
    border: 5px solid blue;
    border-radius: 10%;
}

p {
    margin: 15px;
}

ul {
    font-size: 1.6rem;
    color: maroon;
    list-style-image: url("img/odrazka-1.png");
}

ul ul {
    font-size: 1.1rem;
    color: blue;
    list-style-image: url("img/odr3starz.png");
}

ul > ul a{
    font-size: 1.1rem;
    text-decoration: none;
}

ul > ul a:hover {
    font-size: 1.2rem;
    text-decoration: none;
    color: darkblue;
}

ul ul ul {
    font-size: 1.1rem;
    color: pink;
    font-style: italic;
    list-style-image: url("img/odrazka-1.png");
}

img .mini {
    float: left;
    border: 5px solid white;
    margin: 10px;
    transform(rotate: -5deg);
    height: 50px;
}

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

fieldset {
    border: 3px dotted blue;
    border-radius: 25px;
    margin: 20px;
    text-align: left;
}

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