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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

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

.character {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.character img {
    width: 150px;
    height: auto;
}

.thought-bubbles {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
}

.bubble {
    display: block;
    width: 150px;
    height: 100px;
    border-radius: 20px; 
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;

}

.bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px; 
}



/* bubble positions */
#bubble1 {
    position: absolute;
    top: 360px;
    left: -230px;
}

#bubble2 {
    position: absolute;
    top: 280px;
    left: -180px;
}

#bubble3 {
    position: absolute;
    top: 270px;
    left: -50px;
}

#bubble4 {
    position: absolute;
    top: 350px; 
    left: 50px;
}