body {
    background-image: linear-gradient(to right, #00b4db, #0083b0);
    font-family: 'Roboto', sans-serif;
    font-family: 'Unbounded', cursive;
}

#prvi_container {
    /* background-color: #073278; */

    background-image: linear-gradient(to right, #008cb8, #0083b0);
}

#drugi_container {
    background-image: linear-gradient(to left, #008cb8, #0083b0);

}

.zoom {


    transition: transform .2s;
    /* Animation */
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.zoom:hover {
    transform: scale(1.3);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}