/* Просто для тонкой настройки, Bootstrap делает основную работу */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.min-vh-100 {
    min-height: 100vh;
}

/* Плавная анимация для иконки */
.bi-flower1 {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* Для логотипа */
.logo-transparent {
    background-color: transparent !important;
    mix-blend-mode: multiply;
    /* или normal, darken, lighten */
}

/* Или убрать все фоны */
img[src*="logo"] {
    background: none !important;
    background-color: transparent !important;
}