html, body {
    height: 100%;
    margin: 0;
    background-color: transparent; /* Фон прозрачный */
}

.container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Центрирование */
}

.svg-wrapper {
    position: relative;
}

.svg-container {
    position: relative;
}

.svg-container img {
    width: 100%;
    height: auto;
    filter: brightness(0) saturate(100%) invert(57%) sepia(93%) saturate(471%) hue-rotate(176deg) brightness(97%) contrast(97%); /* Цвет #24A1DE */
    animation: pulseEffect 2s infinite ease-in-out; /* Эффект пульсации */
}

@keyframes pulseEffect {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

.footer {
    position: fixed;
    bottom: 5vh;
    width: 100%;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #24A1DE;
}
.version {
    bottom: 5vh;
    width: 100%;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #24A1DE;
}