/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    text-align: center;
    padding: 0;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}

.hero-logo {
    max-width: 60%;
    height: auto;
}

/* Bubbles Section */
.bubbles {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 40px;
}

/* Bubble Container */
.bubble {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    max-width: 900px;
    padding: 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
    transform: translateX(150%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: white;
}

/* Green and Blue Bubble Colors */
.green {
    border-left: 10px solid #4CAF50;
    background: rgba(76, 175, 80, 0.3);
}

.blue {
    border-left: 10px solid #007BFF;
    background: rgba(0, 123, 255, 0.3);
}

/* Alternating Bubble Position */
.left {
    flex-direction: row;
    transform: translateX(-150%);
}

.right {
    flex-direction: row-reverse;
    transform: translateX(150%);
}

/* Image Styling - Twice the Size */
.bubble img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.bubble img:hover {
    transform: scale(1.1);
}

/* Text Styling - IMPACT Font, All Caps */
@font-face {
    font-family: 'Impact';
    src: local('Impact'), url('https://fonts.cdnfonts.com/s/17112/impact.woff') format('woff');
}

.bubble h2 {
    font-family: 'Impact', sans-serif;
    font-size: 2.5em;
    color: #333;
    margin: 0 20px;
    text-align: center;
    text-transform: uppercase;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 80%;
    }

    .bubble {
        flex-direction: column;
        padding: 15px;
        text-align: center;
    }

    .bubble img {
        margin: 10px 0;
        width: 120px;
        height: 120px;
    }

    .bubble h2 {
        font-size: 2em;
    }
}
