*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    background-color: #E0AA95;
}
.container{
    max-width: 960px;
    outline: 2px solid #E0AA95;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    margin: 0 auto;
    text-align: center;
   
}
header{
    background-color: #1C454A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 200px;
    text-align: center;
    color: white;
}
main{
    height: 550px;
    background-color: #EFC0A9;
    justify-self: center;
    align-self: center;
    width: 960px;
}
.objava1{
     flex-basis: 300px;
    background-color: white;
    padding: 20px;
    margin: 20px;
    flex-grow: 1;
}
.objava2{
     flex-basis: 300px;
    background-color: white;
    padding: 20px;
    margin: 20px;
    flex-grow: 1;
}
a{
    text-decoration: none;
    color: black;
    font-size: 30px;
}
a:hover{
    color: #1C454A;
}
a:active{
    color: red;
}
a:visited{
    color: #1C454A;
}
p{
    font-size: 20px;
}
h3{
    font-size: 30px;
}