body{
background: linear-gradient(maroon, rgb(41,13,13)) no-repeat;
  margin: auto;
  min-height: 100vh;
  width: 100%;
  font-family: 'Patrick Hand', cursive;
 font-weight:400;
 
}

.vzkaz {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 5px;
}
.vzkaz-datum {
    color: gray;
    font-size: 0.9em;
    margin-right: 10px;
}

h1, h2, p, h3, h4 {
    color: rgba(207,202,202,1); /*rgb(255, 104, 104)*/
    font-size: 2.6rem;
    text-align: center;
}
p1, p2, p3{
    color: rgb(164, 135, 135); /*rgb(164, 135, 135)*/
    font-size: 1.5rem;
    text-align: left;
    margin-left: 25px;
    margin-right: 25px;
    display: block;
    text-indent: 35px; 
}
p3{
    margin:25px;
    
    
}
p4{
color:rgb(164, 135, 135);
font-size: 1.3rem;
text-align:center;
}
h3{
  font-size:1.8rem;
  font-weight:700;
  font-family:"Madimi One", sans-serif;
  text-align: left;
  margin-left:25px;
  text-indent: 10px;
}
h4{
  font-size:1.8rem;
  font-weight:700;
  font-family:"Madimi One", sans-serif;
  text-align: left;
  margin-left:100px;   
  text-indent: 85px;
}
h1{
font-size: 3rem;
font-weight:700;
font-family:"Madimi One", sans-serif;

}

h2{
font-size: 2.3rem;   
font-weight: 700;
font-family:"Madimi One", sans-serif;
}
div.hlavni {
border:5px double rgb(112, 82, 82) ; 
background: rgb(50,0,0);
max-width: 1000px;
border-radius: 60px;
margin: auto;
height: 100%;
}
div.menu {
margin-top: -5px;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-content: center;
background: rgb(50,0,0);
    
}
div.menu a{
    width:230px;
    height:45px;
    background: rgb(112, 82, 82);
    font-size:2rem;
    display:block;
    text-decoration:none;
    line-height:45px;
    text-align:center;
    border-radius:20px;
    margin:2px;
    color: rgb(50,0,0) ;
}
div.menu a:hover{
  letter-spacing: 5px;
  font-size: 2.2rem;
  transition: 0.5s;
}

div.obsah {
  text-align:center;  
    
    
}
p {
font-size: 1.2em;
font-weight: 400;
margin: 15px;
 line-height: 1.6;
   font-family: 'Patrick Hand', cursive;
}
li{
    text-align:left;

}
ul ul{
    font-size: 1.8rem;
    color: rgb(152, 62, 62);
    line-height:24px;
    list-style-image: url(img/odrazka1.png);
}
ul{
    color: rgb(120,25,25);
    font-size: 2.3rem;
    font-family: "Patrick Hand", cursive;
    font-weight:600;
    list-style-image: url(img/odrazka.png); 
}
ul.license{
    color: rgb(120,25,25);
    font-size: 1.5rem;
    font-family: "Patrick Hand", cursive;
    font-weight:600;
    list-style-image: none !important;
    list-style-type: circle !important;
    text-align:center;
}
ul.sub-license{
    color: rgb(120,25,25);
    font-size: 1.2rem;
    font-family: "Patrick Hand", cursive;
    font-weight:600;
    list-style-image: none !important;
    list-style-type: circle !important;
    text-align:center;
}
ul.license li,
ul.sub-license li{
    text-align: left;

}
img.mini {
    float: left;
    border: 5px solid rgb(144, 60, 60);
    margin: 15px;
    rotate: 5deg;
    border-radius:10%;
}

a{
  color:rgb(152, 62, 62) ; 
}
a:hover{
    text-decoration: none;
    color: rgb(255, 124, 124); /*rgb(255, 164, 164)*/
    transition: 0.5s;
}

img.galerie {
    border: 5px solid rgb(122, 82, 82);
    margin: 15px 25px;
    transition: all 0.5s ease;
    text-align: left;
}
img.galerie:hover {
  animation: pulseBorder 1.5s infinite;
  border-radius: 15%;
  transform: scale(1.05);
  filter: red(100%) brightness(50%);
  border: 5px solid rgb(144, 60, 60);
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 5px #903c3c;
  }
  50% {
    box-shadow: 0 0 20px #903c3c;
  }
  100% {
    box-shadow: 0 0 5px #903c3c;
  }
}

fieldset{
    border: 3px dotted gray;
    border-radius: 25px;
    margin: 20px;
    color: rgba(207,202,202,1);
    font-size: 1.5rem;
}
legend{
    text-align: center;
    background: rgb(112, 82, 82);
    padding: 5px 10px;
    color: rgba(207,202,202,1);
}

span{
    color:rgb(152, 82, 82) ;
    font-size: 1.6rem;
    font-weight: 700;
}
span2{
 color:rgb(152, 82, 82); 
    font-size: 1.8rem;
    font-weight: 700;
}

span:hover{
 text-decoration: none;
 color:White;
 font-size: 2rem;
 transition: 0.5s;
}

/* Responzivní úpravy pro menší obrazovky */
@media (max-width: 768px) {
    .menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu a {
        display: block;
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .obsah {
        padding: 10px;
    }

    img.mini {
        width: 100%;
        height: auto;
        float: none !important;
        rotate: 0deg;
    }
}

