
h1 {
    color: green;
    font-size: 12px;
}

p {
    color: blue;
    font-size: 13px;
    text-align: justify;
}


a {
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: red;
    text-decoration: underline;
}

a:visited {
    color: yellow;
}

a:active {
    color: red;
}


img {
    max-width: 250px;
    height: auto;
}


.abc {
    background-color: #1A1378;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
}
nav {
background-color: #eedf57; padding: 17px;
}

nav a {
background-color: #918b8f;
color: white;
padding: 15px;
margin: 15px;
display: inline-block
}

nav a.active {
    background-color: green;
    border-radius: 5px;
}

ul, ol {
    color: blue;
}

@media (max-width: 1024px) {
    body {
        font-size: 16px;
    }

    .nav {
        gap: 15px;
    }
}


@media (max-width: 600px) {
    body {
        font-size: 14px;                 }

    .nav {
        flex-direction: column;       
        align-items: center;          
    }

    .nav a {
        padding: 10px;                
        width: 100%;                  
        text-align: center;           
    }

    header {
        padding: 10px;                
    }

    img {
        max-width: 100%;              
        height: auto;                 
    }
}
.hitre-povezave {
    margin: 20px 0;
    text-align: center;
}

.hitre-povezave a {
    margin: 0 10px;
    padding: 8px 12px;
    background-color: #DB2A42;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.hitre-povezave a:hover {
    background-color: #8b0000;
}