

/*  DRUŠTVENE MREŽE  */

#DMKontejner {
    padding-top: 20px;
    padding-bottom: 20px;
}

#StrObavestenja #DMKontejner {
    margin-top: 80px;
    border-top: 2px solid #cccccc;
    background-color: whitesmoke;
    
}

#DMSadrzaj {
    display: flex;
}

#DMSlika {
    width: 50%;
    text-align: center;
}

#DMSlika img {
    width: 50%;
}

#DMOpis{
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-left: 30px;
    justify-content: center;

}

#DMOpis span {
    font-size: 24px;
    color: black;
    margin-bottom: 50px;
}

#DMLinkovi {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
}

#DMLinkovi img {
    width: 60px;
    height: 60px;
    transition: all 1s;
    margin-right: 40px;
}

#DMLinkovi img:hover {
    transform: scale(1.1,1.1);
}





@media screen and  (max-width: 1000px) { /* Pametni telefoni */


    /*  DRUŠTVENE MREŽE  */

    #DMKontejner {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #DMSadrzaj {
        flex-direction: column;
        align-items: center;
    }

    #DMSlika {
        width: 100%;
        max-width: 400px;
    }

    #DMOpis{
        width: 100%;
        max-width: 400px;
        padding-left: 0;
        text-align: center;
        margin-top: 15px;
    }

    #DMOpis span {
        font-size: 18px;
        margin-bottom: 20px;
    }

    #DMLinkovi {
        justify-content: space-around;
    }

    #DMLinkovi img {
        width: 50px;
        height: 50px;
        margin-right: 0px;
    }

}