/* Povezane stranice */

#PovezaneStraniceSadrzaj {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#PovezaneStraniceSadrzaj .NaslovCeline {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 20px;
    color: #A6A6A6;
}

.PovezaneStraniceItem {
    display: flex;
    flex-direction: column;
    width: 150px;
    height: 150px;
    align-items: center;
    margin: 5px;
}

.PovezaneStraniceItem img {
    width: 50px;
    height: 50px;
    transition: all .4s;
    opacity: .85;
}

.PovezaneStraniceItem:hover img {
    transform: scale(1.1,1.1);
    opacity: 1;
}

.PovezaneStraniceItem span {
    font-size: 14px;
    color: #A6A6A6;
    padding: 10px;
    text-align: center;
    transition: all .4s;
}

.PovezaneStraniceItem:hover span {
    color: black;
}


@media screen and  (max-width: 1000px) {

    /* POVEZANE STRANICE */

    .PovezaneStraniceItem {
        width: 110px;
        height: auto;
    }

    .PovezaneStraniceItem img {
        width: 40px;
        height: 40px;
        opacity: 1;
    }
    .PovezaneStraniceItem span {
        font-size: 12px;
    }
}