/* TILES */

.tiles > ul > li > a > div
{
    outline: 2px rgb(255, 166, 0) solid;
    background-color: white;
    position: relative;
    top: 0;
    transition: .5s;
}

.tiles > ul > li > a {
    text-decoration: none;
}

.tiles > ul > li > a > div > header
{
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 1px;
}

.tile-image img
{
    height: 100%;
    width: 100%;
    max-height: 200px;
    max-width: 200px;
}

#main-tiles {
    position: relative;
    top: -200px;
}

/* TILES EFFECTS */

.tiles > ul > li > a > div:hover
{
    top: -20px;
    transition: .3s;
}



/* NEWS */

.news {
    margin-top: -200px;
}

.articles > article
{
    border: 1px rgb(255, 166, 0) solid;
    margin: 0 0 30px 0;
    padding: 0 10px 10px;
}

.articles > article > header
{
    color: rgb(255, 166, 0);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.3em;
    position: relative;
    top: -18px;
    background-color: white;
    width:fit-content;
    padding: 0 15px;
}



/* LINKS */

.link-list
{
    list-style-type: none;
    /* overflow-x: scroll; */
    overflow-y: hidden;
    padding-left: 0;
}

.link-list > li 
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 1%;
    min-height: 120px;
    min-width: 120px;
    max-width: 200px;
}

.link-list > li > a
{
    max-height: inherit;
}

.link-list > li > a > img
{
    filter: grayscale(100%);
    transition: .6s;
}

.link-list > li > a > img:hover
{
    filter: grayscale(0%);
    transition: .3s;
}

#aktualnosci {
    scroll-margin-top: 60px;
}

.reading > iframe{
    height: 80vh;
}

.reading a {
    font-size: 25px;
}

.list > p {
    margin: 8px 0;
}