* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: lightblue; /* Light background color */
    position: relative; /* Positioning context for bubbles */
}

.container {
    text-align: center;
    z-index: 1; /* Ensure content is above bubbles */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
}

/* Text container styles */
.text-container {
    padding: 20px;
    max-width: 800px;
    text-align: left;
    z-index: 1; /* Ensure content is above bubbles */
}

/* Bubble styles */
.bubble {
    position: fixed; /* Change to fixed to keep bubbles in viewport */
    border-radius: 50%;
    opacity: 0.7; /* Translucent effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    animation: float 5s ease-in-out infinite;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6)); /* Highlight effect */
}

.bubble1 {
    width: 10px;
    height: 10px;
    bottom: -60px; /* Start just below the viewport */
    left: 10%;
    animation-delay: 0s;
}

.bubble2 {
    width: 20px;
    height: 20px;
    bottom: -70px; /* Start just below the viewport */
    left: 50%;
    animation-delay: 1s;
}

.bubble3 {
    width: 40px;
    height: 40px;
    bottom: -50px; /* Start just below the viewport */
    left: 70%;
    animation-delay: 2s;
}

.bubble4 {
    width: 60px;
    height: 60px;
    bottom: -80px; /* Start just below the viewport */
    left: 20%;
    animation-delay: 3s;
}

.bubble5 {
    width: 80px;
    height: 80px;
    bottom: -90px; /* Start just below the viewport */
    left: 80%;
    animation-delay: 4s;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100vh); /* Move up to the top of the viewport */
    }
}


.home-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background-color: darkblue; /* Changed to magenta */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.home-button:hover {
    background-color: violet; /* Darker shade on hover */
}

@media (max-width: 600px) {
    .home-button {
        font-size: 16px;
        padding: 8px 16px;
    }
}
