/* === RESET STYLŮ PRO VŠECHNY PRVKY === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* === RESET ZÁKLADNÍCH BLOKŮ === */
html, body {
    height: 100%;
}

/* === TLAČÍTKA – ODSTRANĚNÍ VÝCHOZÍCH STYLŮ === */
button {
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
}

/* === ODKAZY – ODSTRANĚNÍ PODTRŽENÍ === */
a {
    color: inherit;
    text-decoration: none;
}

/* === SEZNAMY – BEZ ODRÁŽEK === */
ul, ol {
    list-style: none;
}

/* === PŘIZPŮSOBENÍ FOCUSU PRO DOSTUPNOST === */
:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
