
.tags-container {
    /*max-width: 100%;*/
    overflow: hidden;
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    padding: 0 25px;
}

@media (max-width: 780px) {
    .tags-container {
        bottom: 50px;
    }
}

.tags {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: marquee 15s linear infinite;

    padding: 10px 0;
    border-top: var(--color-red) 1px solid;
    border-bottom: var(--color-red) 1px solid;
}

.tag {
    margin: 0 20px;
    display: inline-block;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}


.mrizka {
    min-height: 800px;
    margin: 0;
    padding: 25px 0;


    /* nastavení velikosti a barvy čáry mřížky */
    --grid-size: 30px;
    --grid-color: rgba(255, 255, 255, 0.5);

    /*height: 100vh;*/
    /*margin: 0;*/

    /* vytvoření mřížky */
    background: linear-gradient(0deg, var(--grid-color) 0%, var(--grid-color) 1px, transparent 1px, transparent 100%),
    linear-gradient(90deg, var(--grid-color) 0%, var(--grid-color) 1px, transparent 1px, transparent 100%);

    background-size: var(--grid-size) var(--grid-size);


    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.mrizka:after, .mrizka:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background: url("../images/STAR.svg") center no-repeat;
    background-size: contain;
}

.mrizka:before {
    right: 50px;
    top: 50px;
}

.mrizka:after {
    left: 50px;
    bottom: 50px;
}

@media (max-width: 780px) {
    .mrizka:before {
        right: 10px;
        top: 20px;
    }

    .mrizka:after {
        left: 10px;
        bottom: 20px;
    }
}

/*.mrizka img {*/
/*    margin: 40px;*/
/*    max-width: 150px;*/
/*    max-height: 150px;*/
/*}*/


.logo-container {
    display: flex; /* Použití flexboxu */
    justify-content: center; /* Horizontální vycentrování */
    align-items: center; /* Vertikální vycentrování */
    width: 350px; /* Počáteční šířka loga - můžete upravit dle potřeby */
    height: 350px; /* Počáteční výška loga - můžete upravit dle potřeby */
}

.logo-container img {
    margin: 0;
}

@media (max-width: 780px) {
    .logo-container {
        width: 250px; /* Počáteční šířka loga - můžete upravit dle potřeby */
        height: auto; /* Počáteční výška loga - můžete upravit dle potřeby */
        padding: 35px 0;
    }
}

.logo-container img {
    max-width: 100%;
    transition: transform 0.3s; /* Plynulý efekt při zvětšování */
}

.logo-container:hover img {
    transform: scale(1.2); /* Logo se zvětší o 20% při najetí kurzorem */
}

.menuline {
    margin: 0 20px 0 30px;
    flex-grow: 1;
}

.mininav a {
    margin-left: 15px;
}

.minisocial img {
    width: 30px;
    margin: 0 0 0 10px;
}

.rotateTitle {
    position: absolute;
    rotate: -90deg;
    transform-origin: left;
    top: 120px;
    left: -10px;
}

.rotateTitle img {
    display: inline-block;
    margin: 10px;
    rotate: 90deg;
    transform-origin: bottom left;
}
