body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(../pozadina.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-color: #d4c9c4;
}

* {
    box-sizing: border-box;
}

.boxes {
    margin-left: 20px;
}

.box {
    background-image: url(box_pozadina.png);
    background-color: white;
    width: 300px;
    height: 200px;
    _max-width: 500px;
    _max-height: 500px;
    _min-width: 250px;
    _min-height: 250px;
    padding: 20px;
    _padding: 20px 40px;
    _padding: 20px 30px 50px;
    _padding: 20px 30px 40px 25px;
    _padding-top: 20px;
    _padding-left: 30px;
    _padding-right: 45px;
    _padding-bottom: 25px;
    border: 10px solid red;
    border-right: 10px dashed green;
    border-bottom-style: double;
    _box-sizing: border-box;
    _outline: 10px solid grey;
    margin: 20px;
    overflow: scroll;
    float: left;
    _outline: dotted rebeccapurple;
}

.container {
    outline: 5px dashed red;
    width: 1000px;
    height: 1500px;
    margin: 30px auto;
    background-color: rgba(255, 255, 255, 0.8);
}

.nav-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.nav-item {
    display: inline;
    margin-top: 10px;
    margin-right: 10px;
    outline: 3px dashed green;
    background-color: orange;
    padding: 5px;
    float: right;
    color: blue;
}

.nav-link {
    text-decoration: none;
    color: black;
}

.nav-item:hover {
    background-color: yellow;
    outline: 3px solid red;
}

.nav-item:hover .nav-link {
    color: black;
}

h1 {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 20px;
    clear: both;
}

.galerijanaslov {
    text-align: center;
    padding-top: 0;
    padding-bottom: 20px;
    clear: both;
    color: orange;
}

.gallery {
    padding: 0 20px;
}

img {
    float: left;
    width: 290px;
    outline: 3px solid orange;
    margin: 0 25px 25px 0;
}

.gallery-image:nth-child(3n) {
    margin-right: 0;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}