*{
    box-sizing: border-box;
}
body{
    margin: 0;
    background-color: rgb(83, 0, 199);
    line-height: 1.4;
    font-size: 18px;
    font-family: Georgia, 'Times New Roman', Times, serif; 
    position: relative;
}
                      /* Header*/
.header{
    display: flex;
    justify-content: space-between;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: rgb(0, 14, 94);
    flex-shrink: 2;
}
.izbornik ul{
    display: flex;
    margin-right: 25px;
}
.izbornik ul li{
    list-style-type: none;
    margin: 5px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.izbornik ul li a{
    text-decoration: none;
    color: white;
}
.izbornik ul li a:hover{
    text-decoration: none;
    color: rgb(234, 164, 255);
}

.naslov a{
    text-decoration: none;
    color: white; 
    font-size: 40px;
}

.naslov a:hover{
    text-decoration: none;
    color: rgb(234, 164, 255);
}

                         /* Sadrzaj*/

.container{
    flex-basis: 960px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    background-color: rgb(188, 136, 238);
    align-items: center;
    text-align: center;
    padding: 25px;
    margin-top: 125px;
    padding-left: 70px;
    padding-right: 70px;
}

.sadrzaj h2{
    color: white;
}

.text1{
    background-color: rgb(149, 109, 236);
    color: rgb(245, 223, 253);
    text-align: center;
}

.text2{
    background-color: rgb(134, 85, 239);
    color: rgb(245, 223, 253);
    text-align: center;
}

                        /*Footer*/

.footer{
    width: 100%;
    background-color: rgb(0, 14, 94);
    color: white;
    display: flex;
    bottom: 0;
    margin: 0 auto;
    position: fixed;
    justify-content: space-around;
    height: 100px;
}


