li {
    color: teal;
    font-size: 20px;
}

h1 {
    text-align: center;
    color: red;
    font-size: 40px;
}

p {
    text-align: left;
    color: navy;
    font-size: 17px;
    text-indent: 15px;
}

img {
    max-width: 500px;
    height: auto;
}

a:link, a:visited {
    color: #00CCCC;
    text-decoration: none;
}

a:hover {
    color: coral;
    text-decoration: underline;
}

nav a {
	color: white;
    padding: 15px;
    margin: 20px 10px;
    background-color: green;
    text-decoration: none;
}

footer {
    position: fixed;
    bottom: 0;
    color: black;
    background-color: white;
}

nav {
    background-color: aqua;
    padding: 15px;
    text-align: center;
}

header {
    height: 200px;
    padding-bottom: 20px;
    background-image: url('slike/background.jpg');
    background-repeat: repeat;
}

.aktivni {
    color: yellow !important;
}



@media (max-width: 1200px) {
    nav a {
        display: inline-block;
    }
	img {
        max-width: 50%;
        height: auto;
    }
    header {
        background-color: lightgray;
        padding-bottom: 15px;
    }
    nav {
        background-color: lightblue;
        padding: 10px;
    }
    p {
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    nav a {
        display: block;
    }
	img {
        max-width: 70%;
    }
    header {
        background-color: lightgreen;
    }
    nav {
        background-color: lightgray;
        padding: 8px;
    }
    h1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    nav a {
        display: block;
        margin: 5px;
    }
	img {
        max-width: 100%;
    }
    header {
        background-color: lightblue;
        padding: 5px;
    }
    nav {
        background-color: beige;
    }
    p {
        text-align: justify;
        text-indent: 0;
        font-size: 14px;
    }
    h1 {
        font-size: 28px;
        text-align: center;
    }
    footer {
        position: static;
        text-align: center;
        padding: 10px;
    }
}
