
#StudentiKontejner{
    border-top: 1px solid #888888;
    
}

#StudentiSadrzaj {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px 0;
}

.StudentiItem {
    display: flex;
    flex-direction: column;
    width: 160px;
    min-height: 130px;
/*    border: 1px dashed #8c8c8c;*/
    background-color: white;
    border-radius: 5px;
    align-items: center;
    text-align: center;
    margin: 30px;
    margin-top: 50px;
}

.StudentiItem:hover {
    border-color: var(--glavnaBoja1);
}

.StudentiItem img {
    width: 65px;
    height: 65px;
    margin-top: -30px;
    margin-bottom: 10px;
    transition: all .3s;
}

.StudentiItem:hover img {
    transform: scale(1.1, 1.1);
}

.StudentiItem .Naslov {
    font-size: 14px;
    padding: 0 15px;
    color: #595959;
}

.StudentiItem:hover .Naslov {
    color: black;
}

.Neaktivno {
    opacity: .5;
    pointer-events: none;
}


@media screen and  (max-width: 1000px) { /* Od ove širine se računa da je mobilni telefon */

    /*  STUDENTI  */

    #StudentiSadrzaj {
        padding: 20px 0;
    }

    .StudentiItem {
        width: 140px;
        min-height: 130px;
        margin: 20px 10px;
    }

    .StudentiItem img {
        margin-top: -20px;
    }

    .StudentiItem .Naslov {
        font-size: 13px;
        padding: 0 15px;
    }

}