/* General Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #e5e5e6, #dfdfe0);
    color: #333;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Bubbles Background Animation */
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 40%;
    animation-duration: 15s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 60%;
    animation-duration: 11s;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 80%;
    animation-duration: 13s;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-110vh) scale(1.2);
        opacity: 0;
    }
}

/* Content Styling */
.container {
    max-width: 600px;
    padding: 20px;
    z-index: 1; /* Ensures content is above the bubbles */
    position: relative;
}

.logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1c1b1b;
}

a {
    text-decoration: none;
    color: #00bcd4;
    font-size: 1rem;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #000000;
}