*{
    box-sizing: border-box;
}

body{
    background-color: antiquewhite;
    font-family: 'Courier New', Courier, monospace;
    color: darkblue;
    margin: 0;
}

.container{
    width: 90%;
    background-color: burlywood;
    margin: auto;
}

.naslov{
    background-color: chocolate;
    font-size: 25px;
    color: white;
    flex-basis: 350px;
    flex-grow: 1;
}

header{
    background-color: cadetblue;
    display: flex;
    flex-wrap: wrap;
}

.izbornik ul{
    display: flex;
    flex-wrap: wrap;
}

.izbornik ul li{
    margin: 5px;
    padding: 5px;
    border-radius: 5px;
    background-color: brown;
    color: white;
    list-style-type: none;
    flex-basis: 100px;
    flex-grow: 1;
}

.izbornik{
    background-color: crimson;
    flex-basis: 550px;
    flex-grow: 1;
}

footer{
    background-color: coral;
}