body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    position: relative;
    width: 300px;
    height: 300px;
}

.robot {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: auto;
}

.robot img {
    width: 100%;
}

.speech-bubble {
    position: absolute;
    top: -20px;
    left: 130px;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    font-size: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
}

.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}
