body {
    margin: 0;
    padding: 0;
    /* Красивый градиентный фон, как у мыльного раствора */
    background: linear-gradient(135deg, #74ebd5 0%, #acb6e5 100%);
    height: 100vh;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

h1 {
    font-size: 4rem;
    z-index: 10;
    margin-bottom: 10px;
}

p {
    font-size: 1.5rem;
    z-index: 10;
}

/* Базовые стили для пузырька */
.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: float infinite ease-in;
    pointer-events: none; /* Чтобы пузырьки не мешали выделять текст */
}

/* Анимация полета */
@keyframes float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) translateX(50px) scale(1.5);
        opacity: 0;
    }
}
