@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap');


@-webkit-keyframes flurry-x {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(110%);
  }
}
@keyframes flurry-x {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(110%);
  }
}
@-webkit-keyframes flurry-y {
  0% {
    opacity: 1;
    transform: translatey(-15%);
  }
  20% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  40% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes flurry-y {
  0% {
    opacity: 1;
    transform: translatey(-15%);
  }
  20% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  40% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
@-webkit-keyframes flurry-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes flurry-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

body {
  background-color: #333;
  color: #f5f5f5;
  font-family: 'aeonfont', sans-serif;
}

.container {
	background-color: #333;
	color: #f5f5f5;
	font-family: 'aeonfont', sans-serif;
	border: 1px solid #444;
	margin-top: 250px;
}


.flurry-container {
  overflow: hidden;
  position: fixed; /* VAŽNO — da bude preko cijelog ekrana */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;  /* VAŽNO — cijela visina ekrana */
  pointer-events: none;
  z-index: 9999;
}

.flurry-flake-x {
  -webkit-animation-name: flurry-x;
          animation-name: flurry-x;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flurry-flake-y {
  -webkit-animation-name: flurry-y;
          animation-name: flurry-y;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  height: 100%;
}
.flurry-flake-character {
  -webkit-animation-name: flurry-rotate;
          animation-name: flurry-rotate;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  color: white;
  display: inline-block;
}