#ContentBoxStudenti,
#ContentBoxKompanije {
    display: flex;
    width: 100%;
    background-color: #FFE88A;
    flex-direction: column;
    align-items: center;
}

#ContentBoxKompanije {
    background-color: rgb(226, 226, 226);
}

#Studenti,
#Kompanije {
    display: flex;
    width: 1000px;
    padding: 25px 0;
}

#Studenti>div:first-of-type,
#Kompanije>div:first-of-type {
    display: flex;
    flex-basis: 250px;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
}

#Studenti>div:first-of-type img,
#Kompanije>div:first-of-type img {
    width: 100px;
    height: 100px;
}

#Studenti>div:first-of-type span,
#Kompanije>div:first-of-type span {
    width: 100%;
    text-align: center;
    font-size: 25px !important;
    margin-top: 20px;
}

#Studenti>div:last-of-type,
#Kompanije>div:last-of-type {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}





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

    #Studenti,
    #Kompanije {
        width: 100%;
        padding: 10px;
        padding-bottom: 30px;
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    #Studenti>div:first-of-type,
    #Kompanije>div:first-of-type {
        width: 100%;
        flex-basis: unset;
        flex-shrink: unset;
        flex-direction: column;
        align-items: center;
    }

    #Studenti>div:first-of-type span,
    #Kompanije>div:first-of-type span {
        font-size: 25px !important;
        margin-top: 10px;
    }

    #Studenti>div:first-of-type img,
    #Kompanije>div:first-of-type img {
        width: 70px;
        height: 70px;
        margin-top: 15px;
    }

    /* #Studenti > div:last-of-type {
        flex: unset;
        flex-shrink: unset;
        flex-direction: column;
        padding: 20px;
        width: 100%;
    } */
}