body{
    text-align: center;
    background-color: wheat;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
}

#glavni{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 100vh;
}
a{
    color: black;
    text-decoration: none;
    display: inline;
    border: 0px solid white;
    padding: 10px;
    margin: 20px;
}
#linkovi{
    text-decoration: none;
}
ul{
    list-style: none;
}
ul li{
    border: black 2px solid;
    border-radius: 12px;
    flex-shrink: 1;
} 
ul li:hover{
    border: 2px rgb(136, 136, 206) solid;
    transition-duration: .7s;
}
ul li a:hover{
    color:rgb(136, 136, 206);
    transition-duration: .7s;
}

#header{
    text-align: center;
    font-size: 16px;
    height: 90px;
    max-width: 2000px;
    background-color:rgb(136, 136, 206) ;
    color: white;
    flex-shrink: 1;
}
#podnozje{
    text-align: center;
    height: 40px;
    max-width: 2000px;
    background-color: rgb(136, 136, 206);
    color: white;
    flex-shrink: 1;
}