html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-anchor: auto;
}

a {
    text-decoration: none;
}

.nav-link {
    color: orange !important;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::-webkit-scrollbar-thumb:hover {
    background: red;
}

/* TEXTY */
#otazka {
    font-family: "Comic Sans MS";
    color: #3399FF;
}

p {
    margin: 15px;
    text-align: justify;
    text-indent: 50px;
}

/* PÄTA */
#pata {
    display: flex;
    align-items: flex-end;
    padding: 10px;
    justify-content: center;
    background-color: #85cf44;
    max-width: 100%;
    font-size: 15px;
}
#pata a {
    color: #A0522D;
}

/* ČLÁNOK */
#clanok {
    margin: 0 25px;
    font-size: 18px;
}

/* GALÉRIA */
.galleria {
    height: 30em;
    background: #000;
    display: block;
}

#obrazky img {
    margin: 3px;
    border: 2px solid gray;
    box-shadow: 3px 3px 6px black;
    transition: transform .25s ease, opacity .25s ease;
}
#obrazky img:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* TURISTIKA – FAREBNÉ BLOKY */
.one {
    color: #8F3A84;
    background-color: aqua;
}
.two {
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
}
.two a {
    color: #FDD835;
    font-weight: bold;
}
.roky a {
    color: #8F3A84;
    font-weight: bold;
}
.three, .six {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF407;
}
.three a {
    color: #8F3A84;
    font-weight: bold;
}
.four, .six {
    background-color: chartreuse;
}
.five {
    background-color: aqua;
}
.nested {
    padding: 5px;
}
.nested a {
    color: red;
    font-family: garamond;
}

/* STRÁNKOVANIE */
div.stranky {
    width: 90%;
    margin-top: 10px;
    margin-left: 50px;
    text-align: center;
}
.stranky a {
    float: left;
    width: 100px;
    text-align: left;
}
.stranky span + a {
    float: right;
    text-align: right;
}
.stranky span {
    width: 140px;
    text-align: center;
}
.stranky span:first-child {
    position: relative;
    left: 50px;
}
.stranky span:last-child {
    position: relative;
    right: 50px;
}
.stranky span:only-child {
    left: 0;
    right: 0;
}

/* POTÁPANIE – PÔVODNÝ FLEXBOX */
#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#container article {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform .25s ease, box-shadow .25s ease;
}

#container article:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

#container article img {
    max-width: 260px;
    width: 100%;
    display: block;
}

#container article div {
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #c45a00;
}
