/*Postavke stranice*/
/*Postavke stranice*/
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Calibri Light', Calibri, sans-serif;
}
.page .column {
    margin: 0px auto;
    width: 1000px;
    padding: 0px 10px;
    min-height: calc(100vh);
}
.page:last-child .column {
    min-height: calc(100vh - 120px);
}


/*Kraj postavke stranice*/
/*Header pocetak*/
/*Header pocetak*/
.header {
    border-bottom: 3px solid #dc0000;
    background-color: #fcfcfc;
    position: fixed;
    z-index: 99999;/*ako ovog nema onda menu ima artifakte dok se radi scrool*/
    width: 100vw;/*ako ti ovo ne radi probaj sa postocima*/
}
.kontejner-za-logo-social {
    margin: 0px auto;
    width: 1000px;
}
.omot-za-logo-social {
    display: flex;
}
.omot-za-logo {
    flex-grow: 1;
}
.omot-za-logo img {
    margin-top: 5px;
}
.omot-za-social-media-icons {
    padding: 10px;
    flex-grow: 1;
}
.omot-za-social-media-icons ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}
.omot-za-social-media-icons ul li a img {
    height: 24px;
    width: 24px;
    margin: 5px;
}
.main-menu ul {
    display: flex;
    list-style: none;
}
.main-menu ul li {
    flex-grow: 1;
    text-align: center;
}
.main-menu ul li a {
    padding: 10px;
    display: block;
    text-decoration: none;
    color: #dc0000;
}
.main-menu ul li a:hover,
.main-menu ul li.active a {
    background: #dc0000;
    color: #fff;
}
.gumb{
    background-color: red;
    box-shadow: inset 0px 1px 3px 0px #91b8b3;
    background-color: #768d87;
    border-radius: 5px;
    border: 1px solid #566963;
    display: inline-block;
    color: #ffffff;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 11px 23px;
    text-decoration: none;
    text-shadow: 0px -1px 0px #2b665e;
    transition: 300ms;
    margin-top: 20px;
}
.gumb:hover{
    background-color:#5cbf2a;
    cursor:pointer;
}
.gumb:active{
    position: relative;
    top:1px;
}
/*Header kraj*/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/

/*1.PRVA POČETAK*/
#zaCentriranje{
     padding-top: calc(40vh - 90px);
}
.item{
    display: block;
    padding: 3px;
    margin: 2px;
    border: 1px solid #ddd;
}
.item:hover:not([data-disable-menu="true"]){
    background-color: #f9f9f9;
}

.krug{
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: white;

}
.krug:hover{
    cursor: pointer;
}


.item[data-disable-menu="true"]{
    color: darkgrey;
}

#context-menu{
    position: absolute;
    border: 1px solid black;
    background-color:#cce3fa;
    color: #000;
    padding: 4px;
    font-family: monospace;
    font-size: 15px;


}
#context-menu:hover{
    cursor: pointer;
}

#context-menu .action{
    display: block;
    margin: 3px 0px;
    border-bottom: 1px solid rgba(145,163,176,0.5);



}
#context-menu .action:hover{


}
.animacija {

    /*
    transition-timing-function: ease-in-out;
    animation-name: rotate-center;
    animation-iteration-count: 1;
    animation-duration: 0.6s;
    animation-fill-mode: both;
    */
    animation: rotate-center 0.6s ease-in-out both;

}
/*keyframes*/

/* ----------------------------------------------
 * Generated by Animista on 2023-2-5 22:0:6
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*proba*/



/*1.PRVA KRAJ*/


.footer {
    border-top: 3px solid #dc0000;
    padding: 20px 10px 40px 10px;
    background: #fcfcfc;
}

.footer-kontejner {
    width: 1000px;
    margin: 0px auto;
    display: flex;
    /*kontejner za elemente footera*/
}

.footer .block {
    flex-grow: 1;
    text-align: center;
    /*block-parent*/
}

.footer .block:first-child {
    text-align: left;
}

.footer .block:last-child {
    text-align: right;
}

.footer-menu ul {
    list-style: none;
    /*desni kraj footera sa linkovima*/
}

.footer-menu ul li a {
    text-decoration: none;
    color: #dc0000;
}

.footer-menu ul li a:hover {
    text-decoration: underline;
}
/*footer kraj*/



























































































































































