
body{
    background-color: #f3eee2;
}

.bubbles-page-content {
    padding: 100px 20px 50px;
    text-align: center;
    overflow: hidden; 
    min-height: 100vh;
    background-color: #f3eee2;
}

.bubbles-page-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #b38061;
    margin-bottom: 10px;
}

.bubbles-page-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}


.bubbles-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    background-color: #b38061;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    animation: float 15s linear infinite; 
    z-index: -1; 
}


@keyframes float {
    0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

.bubble-1 { left: 10%; animation-delay: 2s; }
.bubble-2 { left: 25%; animation-delay: 6s; }
.bubble-3 { left: 40%; animation-delay: 10s; }
.bubble-4 { left: 55%; animation-delay: 14s; }
.bubble-5 { left: 70%; animation-delay: 18s; }
.bubble-6 { left: 5%; animation-delay: 22s; }
.bubble-7 { left: 80%; animation-delay: 26s; }
.bubble-8 { left: 30%; animation-delay: 30s; }
.bubble-9 { left: 60%; animation-delay: 34s; }
.bubble-10 { left: 90%; animation-delay: 38s; }

body {
    overflow-x: hidden;
}

