    
        body {
            background: rgb(60, 59, 57);
        color: white;
        font-family: Arial, Helvetica, sans-serif;
        margin: 0;
        padding: 0;
        }
        header {
          background: rgb(17, 17, 17);
          padding: 20px;
        }
        section {
            background: bisque;
            color:black;
            padding: 40px;
            display: flex;
            flex-direction: row;
            font-weight: bold;
        }
        footer {
            background: black;
            padding: 20px 20px;
            font-weight: normal;
        }
        div {
            background: rgb(227, 227, 208);
            color: black;
            min-width: 200px;
            max-width: 300px;
            height: 100px;
            margin: 10px;
            padding: 10px;
            display: flex;
            justify-content: center;  /* centriranje teksta */
            align-items: center;
            border: 1px solid white;  /* <-- vidna obroba */
}
        ul {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }
       li {
        display: inline-block;
        margin-right: 20px;
       }
       
       div {
        font-weight: bold;
       }
       div.first {
  background-color:rgb(228, 206, 179);
}
       div.second {
  background-color:rgb(175, 159, 140);

}
div.third {
  background-color: rgb(131, 118, 103);
}
section.sivina {
    background:rgb(16, 16, 16);
    display: flex;
    justify-content: space-between; /* ali space-evenly */
  padding: 20px;
}