body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    overflow: hidden;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 300px; /* Настрой размер логотипа */
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    /*animation: glow 2s ease-in-out infinite; /* Анимация свечения */
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
}
