* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: rgb(151, 114, 160);
}

.container {
    width: 70%;
    background-color: rgb(236, 255, 129);
    margin: 0 auto;
}

header {
    background-color: rgb(255, 197, 255);
    display: flex;
    flex-wrap: wrap;
}

h2 {
    background-color:  rgb(211, 176, 240);
}
.naslov {
    background-color:  rgb(211, 176, 240);
    flex-basis: 300px;
    flex-grow: 1;
}

.izbornik {
    background-color: rgb(223, 183, 255);
    flex-basis: 500px;
    flex-grow: 1;
}

.izbornik ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.izbornik ul li {
    padding: 5px;
    margin: 5px;
    background-color:   rgb(245, 255, 186);
    border-radius: 7px;
    flex-basis: 100px;
    text-align: center;
    color: rgb(0, 0, 0);
    flex-grow: 1;
}

.boja:hover { background-color: rgb(239, 255, 149);}

footer {
    background-color:  rgb(223, 183, 255);
}


.sadrzaj {
    display: flex;
    text-align: center;
    flex-basis: 400px;
    flex-wrap: wrap;

}

article {
    flex-basis: 500px;
    flex-grow: 1;
}

.autor {
    text-align: center;
    margin-top: 20px;
}