*{

    box-sizing: border-box;
}

body{
    margin: 0;
    background-color: darkgray;
    line-height: 1.4;
}

.container{
    max-width: 1500px;
    margin: 0 auto;
    outline: 3px dotted red;
}

.row{
    display: flex;

}

.flex-item{
    height: 1000px;
    flex-basis: 430px;
}

.flex-itemShrink{
    height: 1000px;
    flex-basis: 500px;
}

.oneGrow{
    background-color: tomato;
    flex-grow: 10;
  
}

.twoGrow{
    background-color: cadetblue;
    flex: 5;

   
}

.threeGrow{
    background-color: rebeccapurple;
    flex-grow: 3;
 
 
}

.oneShrink{
    background-color: tomato;
    flex-shrink: 10;
  
}

.twoShrink{
    background-color: cadetblue;
    flex-shrink: 4;
   
}

.threeShrink{
    background-color: rebeccapurple;
    flex-shrink: 7;
 
}

.navigacija{
    margin-top: 10px;
    outline: 3px dotted blue;
    height: 100px;
    max-width: 1500px;
    display: flex;
    color: black;
}

.link{
text-align: center;
font-size: 75px;
border: black 3px;
flex-basis: 500px;
background-color: white;



}

a{
text-decoration: none;
color: black;
}