body, h1, p, div, section, header, footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom, #0000FF, #3399FF); /* Niebieski gradient na przezroczystość */
    font-family: Arial, sans-serif;
    position: relative;
}

.wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.half {
    width: 50%;
    position: relative; /* Potrzebne dla absolutnego pozycjonowania dzieci */
}

.triple {
    width: 33.33%;
    position: relative; /* Potrzebne dla absolutnego pozycjonowania dzieci */
}

/* Logo — zachowane Twoje pozycjonowanie i animacja */
.logo {
    width: 40%; /* Wartość bazowa logo */
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1); /* Utrzymuje animację w środku */
    animation: pulse 40s ease-in-out infinite; /* Płynna animacja */
    filter: drop-shadow(0 0 10px #00CCFF) drop-shadow(0 0 20px #00CCFF);
}

.logo2 {
    width: 35%; /* Wartość bazowa logo */
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1); /* Utrzymuje animację w środku */
    animation: pulse 40s ease-in-out infinite; /* Płynna animacja */
    filter: drop-shadow(0 0 30px #00CCFF) /*drop-shadow(0 0 20px #00CCFF)*/;
}

.logo3 {
    width: 50%; /* Wartość bazowa logo */
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1); /* Utrzymuje animację w środku */
    animation: pulse 40s ease-in-out infinite; /* Płynna animacja */
    filter: drop-shadow(0 0 10px #00CCFF) drop-shadow(0 0 30px #00CCFF);
}

/* Animacja z zachowaniem translate */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1); /* Logo ma rozmiar 100% */
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2); /* Największy rozmiar - 120% */
    }
}

/* Coming Soon — dokładnie jak u Ciebie, z komentarzami */
.coming-soon {
    position: absolute;
    bottom: 15%; /* Pionowo 15% od dołu */
    left: 50%; /* Poziomo wyśrodkowany */
    transform: translateX(-50%); /* Korekta dla wyśrodkowania */
    font-size: 1rem;
    color: #00CCFF;
    text-shadow: 
        0 0 5px #00CCFF, 
        0 0 10px #00CCFF, 
        0 0 15px #00CCFF, 
        0 0 20px #00CCFF; 
        /*0 0 25px #00CCFF;*/
        /*0 0 30px #00CCFF;*/
        /*0 0 35px #00CCFF;*/
}
