*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}
 
body{
    background-color: #FEFFFE;
}
 
.container{
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    margin: 0 auto;
   
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
 
header{
    height: 100px;
     color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}
 nav{
    
    order: 1;
 }
 .logo{
    order: 2;
 }
nav ul{
    display: flex;
    list-style-type: none;
}
 
nav ul li{
    margin: 0 10px;
}
 
nav u li a{
    text-decoration: none;
    color: black;
}
 
nav ul li a:hover{
    color:darkblue;
}
 
main{
    -height: 300px;
    background-color: lightblue;
    justify-self: center;
    align-self: center;
   
}
 
.row-1{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
 
.row-2{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
 
footer{
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.objava{
    flex-basis: 300px;

    padding: 20px;
    margin: 20px;
    flex-grow: 1;
}
.objava-2{
    margin-bottom: 10px;
    background-color: lightgray;
    padding: 20px;
    flex-basis: 300px;
    flex-grow: 1;
}
body {
    margin: 0;
}

header, nav, main, section, article, aside, footer {
 
    margin: 10px;
    padding: 15px;
}


main {
    background-color: #B4B8C5;
    display: flex;
     box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

section {
    flex: 2;
}

aside {
    flex: 1;
}


header { 
    background-color: #8D818C;
 }

nav {
     background-color: #A5A299; 
    }
section { 
    background-color: #A5A299;
 }
article { 
    background-color: white; 
}
aside { 
    background-color: white; 
}
footer { 
    background-color: #8D818C; 
     color: white;
}
a{
    text-decoration: none;
    color: rgb(71, 71, 71);
}
.gal{
    text-align: center;
}