:root
{
    --kolor-podstawowy: rgb(5, 113, 255);
    /* ŁADNY KOLOR --kolor-podstawowy: rgb(209, 255, 5); */
    --kolor-bialy: rgb(179, 179, 179);
    --kolor-tekstu: rgb(228, 228, 228);
}
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}
body
{
    font-family: 'Open Sans', sans-serif;
    background-color: rgb(39, 39, 39);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
main
{
    padding: 60px 20px 0 20px;
    position: relative;
    text-align: justify;
    color: var(--kolor-tekstu);
    min-height: 80vh;
}
a
{
    text-decoration: none;
    color: white;
}

ul.legenda
{
    display: inline-block;
    list-style: none;
}
ul.legenda li
{
    margin: 15px;
    gap: 10px;
    display: flex;
    flex-wrap: row;
    align-items: center;
}
ul.legenda li img
{
    width: 20px;
    filter:  invert(100%);
}

ul.legenda li img.sublist
{
    margin-left: 30px;
}
