/* Zmenšenie nadpisov článkov (h1) */
.com-content-article h1,
.article-title h1,
h1.article-title {
    font-size: 1.75rem !important; 
}

/* Zmenšenie nadpisov v blogu / zoznamoch článkov (h2) */
.blog-item h2,
.items-leading h2,
h2.item-title {
    font-size: 1.5rem !important;
}

/* Zmenšenie nadpisov modulov */
.moduletable h2,
.card-title {
    font-size: 1.25rem !important;
}

body {
    background-image: url(/images/vodoznak.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-attachment: fixed;
}

.marquee-kontajner {
    width: 100%;
    overflow: hidden;
    background-color: #f8f9fa;
    padding: 10px 0;
    position: relative;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-weight: bold;
    color: #333;
    /* Podpora pre Chrome, Safari a Firefox zároveň */
    -webkit-animation: chodiaciText 30s linear infinite;
    animation: chodiaciText 30s linear infinite;
}

/* Animácia pre Chrome a Safari */
@-webkit-keyframes chodiaciText {
    0% { -webkit-transform: translateX(0%); transform: translateX(0%); }
    100% { -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}

/* Štandardná animácia pre Firefox a Edge */
@keyframes chodiaciText {
    0% { -webkit-transform: translateX(0%); transform: translateX(0%); }
    100% { -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}

/* Zastavenie pri prejdení myšou */
.marquee-kontajner:hover .marquee-text {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
