/*---------------------------------------------------------------------------------

 Theme Name:   Divi Child
 Theme URI:    
 Description:  
 Author:       
 Author URI:   
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

------------------------------ ADDITIONAL CSS HERE ------------------------------*/

#main-header.et-fixed-header {
background-color: rgb(40, 52, 68, 0.6)!important
}

/*nova godina*/

/* Stilovi za animaciju pahulja */
.snowflake {
  position: fixed;
  top: -10px;
  color: white;
  font-size: 1rem;
  opacity: 0.8;
  animation: fall linear infinite, sway linear infinite;
  pointer-events: none; /* Ne ometa interakcije sa sajtom */
  z-index: 9999; /* Uvek iznad svih elemenata */
}

@keyframes fall {
  0% {
    top: -10%;
  }
  100% {
    top: 110%;
  }
}

@keyframes sway {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-20px);
  }
}
/*nova godina kraj*/