
a.button {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    font-size: 14px;
    color: white;
    background: linear-gradient(to right, #007bff, #00c6ff);
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}
a.button:hover {
    background: linear-gradient(to right, #00c6ff, #007bff);
    transform: scale(1.05);
}
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(2, 78, 78);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid white;
    border-top: 5px solid black;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
html {
    background: linear-gradient(to bottom right, #0d2b46, #102a13);
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
body {
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    
}
hr {
    margin-bottom: 30px;
}
.left-menu {
    position: fixed;
    top: 60px;
    left: 20px;
    width: 220px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.left-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.left-menu li {
    padding: 10px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease-in-out, transform 0.2s;
    border-radius: 8px;
}
.left-menu li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}
.main-tab {
    color: #ffe66d;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}
.left-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
}
.left-menu a:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    transform: scale(1.03);
    color: #ffe66d;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.submenu {
    display: none;
    max-height: 500px;
    overflow-y: auto;
}
.sub-tab {
    color: #ddd;
    font-size: 15px;
    margin-left: 10px;
    padding-left: 5px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.content {
    margin-left: 260px;
    padding: 30px;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    font-size: 18px;
}
h1 {
    font-size: 90px;
    text-align: center;
    font-family: 'Great Vibes', cursive;
    background: linear-gradient(90deg, #ff6b6b, #ffb6b9, #ffe66d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    margin-bottom: 60px;
    padding-top: 80px;
    animation: fadeIn 2s ease-in-out;
    text-shadow: 4px 4px 12px rgba(255, 255, 255, 0.2);
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translatey(-30px) scale(0.8);}
    100% { opacity: 1; transform: translateY(0) scale(1);}
}
.jedna {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 935px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
p:before {
    content: "📘";
    position: absolute;
    left: -40px;
    top: 15px;
    font-size: 28px;
}
p:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 255, 200, 0.4);
}
ul:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 255, 200, 0.4);
}
.dva {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
h2 {
    font-size: 50px;
    text-align: left;
    font-family: 'Great Vibes', cursive;
    background: linear-gradient(90deg, #ff6b6b, #ffb6b9, #ffe66d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    margin-bottom: 60px;
    padding-top: 80px;
    animation: fadeIn 2s ease-in-out;
    text-shadow: 4px 4px 12px rgba(255, 255, 255, 0.2);
}
.tri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.ctyri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 685px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.pet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.sest {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 800px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.sedm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 725px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.osm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 725px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.devet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 275px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.deset {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 375px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek1 {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-left: 350px;
    margin-top: 125px;
}
.obrazek1:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
    display: block;
    border-radius: 5px;
    max-width: 80%;
    max-height: 80vh;
    margin: 5% auto;;
}
.modal-img {
    width: 80%;
    height: auto;
    border-radius: 5px;
    display: block;
    margin: 0 auto
}
.close {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
.close:hover {
    color: red;
}
.popis {
    color: white;
    font-size: 18px;
    margin-top: 10px;
}
.zpet {
    background: white;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
}
.zpet:hover {
    background: #ddd;
}
.obrazek2 {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-left: 350px;
    margin-top: 50px;
}
.obrazek2:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.dolu {
    margin-top: 500px;
}
.jedenact {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 650px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.dvanact {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 350px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.trinact {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 430px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek3 {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-left: 450px;
    margin-top: 150px;
}
.obrazek3:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.ctrnact {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.patnact {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 520px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.sestnact {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 250px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.obrazek4 {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-left: 450px;
    margin-top: 150px;
}
.obrazek4:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.sedmnact {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 690px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.osmnact {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 600px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;    
}
.devatenact {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 350px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.dvacet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 600px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.dvacetjedna {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 380px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.dvacetdva {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 560px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.obrazek5 {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-left: 450px;
    margin-top: 150px;
}
.obrazek5:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.dvacettri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek6 {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
}
.obrazek6:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.dvacetctyri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 680px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek7 {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
}
.obrazek7:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek8 {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 200px;
}
.obrazek8:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.dvacetpet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 470px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek9 {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 200px;
}
.obrazek9:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.dvacetsest {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 300px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.dvacetsedm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 695px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.obrazek10 {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
}
.obrazek10:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.dvacetosm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 880px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek11 {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek11:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.dvacetdevet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 912px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek12 {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek12:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.třicet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 730px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.obrazek13 {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek13:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.tricetjedna {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 715px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.tricetdva {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.obrazek14 {
    width: 100%;
    max-width: 425px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek14:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek15 {
    width: 100%;
    max-width: 425px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek15:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek16 {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek16:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek17 {
    width: 100%;
    max-width: 390px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek17:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.tricettri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 490px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.tricetctyri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;  
}
.obrazek18 {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek18:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.tricetpet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 660px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.tricetsest {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 144px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek19 {
    width: 100%;
    max-width: 325px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek19:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.tricetsedm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.tricetosm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.tricetdevet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 450px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek20 {
    width: 100%;
    max-width: 325px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek20:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.ctyricet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 900px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.ctyricetjedna {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 230px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.ctyricetdva {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 710px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.ctyricettri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 815px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.ctyricetctyri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 135px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.ctyricetpet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 720px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.ctyricetsest {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.ctyricetsedm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek21 {
    width: 100%;
    max-width: 325px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek21:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.ctyricetosm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 760px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.ctyricetdevet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 590px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek22 {
    width: 100%;
    max-width: 325px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek22:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek23 {
    width: 100%;
    max-width: 325px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek23:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.padesat {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 625px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek24 {
    width: 100%;
    max-width: 325px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 450px;
}
.obrazek24:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.padesatjedna {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 380px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.padesatdva {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 590px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.padesattri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 880px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.padesatctyri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 115px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.padesatpet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 900px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.padesatsest {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 500px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.padesatsedm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1090px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek25 {
    width: 100%;
    max-width: 325px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek25:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.padesatosm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 830px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.obrazek26 {
    width: 100%;
    max-width: 325px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek26:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.padesatdevet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 830px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.sedesat {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 320px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.sedesatjedna {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 700px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.sedesatdva {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 950px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.sedesattri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 450px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.sedesatctyri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.sedesatpet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 620px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px; 
}
.sedesatsest {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 970px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.sedesatsedm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 530px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek27 {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek27:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.sedesatosm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 448px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.sedesatdevet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek28 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek28:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.sedmdesat {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1000px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek29 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek29:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek30 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek30:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.sedmdesatjedna {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 710px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.sedmdesatdva {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 310px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.sedmdesattri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 960px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.sedmdesatctyri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 800px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek31 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek31:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.sedmdesatpet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 960px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.sedmdesatsest {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 220px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.sedmdesatsedm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 670px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.sedmdesatosm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1000px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek32 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek32:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.sedmdesatdevet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 575px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek33 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
}
.obrazek33:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek34 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 500px;
}
.obrazek34:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.osmdesat {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1030px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek35 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
}
.obrazek35:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek36 {
    width: 100%;
    max-width: 197px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 500px;
}
.obrazek36:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek37 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek37:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.osmdesatjedna {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 770px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek38 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek38:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek39 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek39:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.osmdesatdva {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 540px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.osmdesattri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 910px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek40 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek40:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.osmdesatctyri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek41 {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek41:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek42 {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 30px;
    margin-left: 400px;
}
.obrazek42:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.obrazek43 {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 30px;
    margin-left: 400px;
}
.obrazek43:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.osmdesatpet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.osmdesatsest {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 500px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek44 {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek44:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.osmdesatsedm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 960px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.osmdesatosm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 800px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek45 {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek45:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.osmdesatdevet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.devadesat {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 340px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.devadesatjeden {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 780px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.devadesatdva {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 490px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.devadesattri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 580px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek46 {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek46:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.devadesatctyri {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1070px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek47 {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek47:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.devadesatpet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1060px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.devadesatsest {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.devadesatsedm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 880px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.devadesatosm {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 570px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek48 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek48:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.devadesatdevet {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 1100px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.obrazek49 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 40px auto;
    float: left;
    margin-top: 150px;
    margin-left: 400px;
}
.obrazek49:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 109, 0.5);
}
.sto {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 980px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}
.stojedna {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin: 30px auto;
    width: 840px;
    font-family: 'Poppins', sans-serif;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-left: 6px solid #00ffc3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-left: 20px;
}

@media (max-width: 1200px) {
  .content,
  .jedna,
  .dva,
  .tri,
  .ctyri,
  .pet,
  .sest,
  .sedm,
  .osm,
  .devet,
  .deset,
  .jedenact,
  .dvanact,
  .trinact,
  .ctrnact,
  .patnact,
  .sestnact,
  .sedmnact,
  .osmnact,
  .devatenact,
  .dvacet,
  .dvacetjedna,
  .dvacetdva,
  .dvacettri,
  .dvacetctyri,
  .dvacetpet,
  .dvacetsest,
  .dvacetosm,
  .dvacetdevet,
  .tricet,
  .tricetjedna,
  .tricetdva,
  .tricettri,
  .tricetctyri,
  .tricetpet,
  .tricetsest,
  .tricetsedm,
  .tricetosm,
  .tricetdevet,
  .ctyricet,
  .ctyricetjedna,
  .ctyricetdva,
  .ctyricettri,
  .ctyricetctyri,
  .ctyricetpet,
  .ctyricetsest,
  .ctyricetsedm,
  .ctyricetosm,
  .ctyricetdevet,
  .padesat,
  .padesatjedna,
  .padesatdva,
  .padesattri,
  .padesatctyri,
  .padesatpet,
  .padesatsest,
  .padesatsedm,
  .padesatosm,
  .padesatdevet,
  .sedesat,
  .sedesatjedna,
  .sedesatdva,
  .sedesattri,
  .sedesatctyri,
  .sedesatpet,
  .sedesatsest,
  .sedesatsedm,
  .sedesatosm,
  .sedesatdevet,
  .sedmdesat,
  .sedmdesatjedna,
  .sedmdesatdva,
  .sedmdesattri,
  .sedmdesatctyri,
  .sedmdesatpet,
  .sedmdesatsest,
  .sedmdesatsedm,
  .sedmdesatosm,
  .sedmdesatdevet,
  .osmdesat,
  .osmdesatjedna,
  .osmdesatdva,
  .osmdesattri,
  .osmdesatctyri,
  .osmdesatpet,
  .osmdesatsest,
  .osmdesatsedm,
  .osmdesatosm,
  .osmdesatdevet,
  .devadesat,
  .devadesatjeden,
  .devadesatdva,
  .devadesattri,
  .devadesatctyri,
  .devadesatpet,
  .devadesatsest,
  .devadesatsedm,
  .devadesatosm,
  .devadesatdevet,
  .sto,
  .stojedna
  .tecky1
  .tecky2,
  .tecky3,
  .tecky4 {
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .left-menu {
    position: static;
    width: auto;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
  }

  .content {
    margin-left: 0;
    padding: 20px;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: 7vw;
    text-align: center !important;
  }

  table {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .left-menu {
    padding: 10px;
  }

  .left-menu a {
    font-size: 14px;
    padding: 6px 10px;
  }

  .main-tab {
    font-size: 18px;
  }

  .modal-content {
    max-width: 95%;
    max-height: 90vh;
  }

  .modal-img {
    width: 100%;
  }

  .obrazek1,
  .obrazek2,
  .obrazek3,
  .obrazek4,
  .obrazek5,
  .obrazek6,
  .obrazek7,
  .obrazek8,
  .obrazek9,
  .obrazek10,
  .obrazek11,
  .obrazek12,
  .obrazek13,
  .obrazek14,
  .obrazek15,
  .obrazek16,
  .obrazek17,
  .obrazek18,
  .obrazek19,
  .obrazek20,
  .obrazek21,
  .obrazek22,
  .obrazek23,
  .obrazek24,
  .obrazek25,
  .obrazek26,
  .obrazek27,
  .obrazek28,
  .obrazek29,
  .obrazek30,
  .obrazek31,
  .obrazek32,
  .obrazek33,
  .obrazek34,
  .obrazek35,
  .obrazek36,
  .obrazek37,
  .obrazek38,
  .obrazek39,
  .obrazek40,
  .obrazek41,
  .obrazek42,
  .obrazek43,
  .obrazek44,
  .obrazek45,
  .obrazek46,
  .obrazek47,
  .obrazek48,
  .obrazek49 {
    float: none;
    margin: 20px auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .content {
    font-size: 16px;
  }

  th, td {
    padding: 10px;
    font-size: 13px;
  }

  .tucne1 {
    font-size: 18px;
  }

  .popis {
    font-size: 16px;
  }
}







