body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #FFF6E9;
}

.container {
    text-align: center;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

.logo {
    width: 500px; /* Adjust the size of the logo */
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    color: #FF9700;
}

p {
    font-size: 1.5em;
    color: #0E606E;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ... (existing styles) */

.bubble {
    position: absolute;
    bottom: 0;
    background-color: #0E606E;
    border-radius: 50%;
}

/* ... (existing styles) */

