body {
    font-family: 'Great Vibes', cursive;
    margin: 0;
    padding: 0;
    background-color: white;
    text-align: center;
    /*color: rgb(0,100,0);*/
}

.gold-text {
  font-size: 60px;
  font-weight: bold;
  font-family: 'Great Vibes', cursive;

  background: linear-gradient(
    90deg,
    #b8860b,
    #f7e7a1,
    #d4af37,
    #fff4b0,
    #b8860b
  );
  background-size: 300% 100%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { background-position: 0% }
  100% { background-position: 100% }
}

.big-text {
    font-size: clamp(50px, 10vw, 120px);
    font-family: 'Great Vibes', cursive;
    line-height: 1.1;
}

.medium-text {
    font-size: clamp(30px, 6vw, 60px);
    font-family: 'Great Vibes', cursive;
}

/* 🌸 zajednički stil */
.flower {
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: -1; /* iza teksta */
    pointer-events: none;
}

/* levo cveće */
.flower.left {
    left: -40px; /* 👈 izlazi iz ekrana */
}

/* desno cveće */
.flower.right {
    right: -40px; /* 👈 izlazi iz ekrana */
}


@media (max-width: 768px) {
    .flower {
        height: 60vh; /* manja visina */
        top: auto;
        bottom: 0; /* 👇 dole kao dekoracija */
    }

    .flower.left {
        left: -30px;
    }

    .flower.right {
        right: -30px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 15px;
        padding: 0 15px;
    }
}



/*h2{
  font-family: 'Marck Script', cursive;
}*/