/* RESET */
body {
    margin: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    overflow: hidden; 
}

img {
    display: block;
    max-width: 100%;
}

/* banner */
.banner-img {
    width: 100%;
}

/* CENTER PAGE */
.home {
    height: calc(100vh - 120px); 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LAYOUT BOX */
.home-layout {
    position: relative;
    width: 320px;
    height: 600px;
}

/* CHARACTER */
.main-character {
    width: 320px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1; 
}

/* THOUGHT BUBBLES */
.thought {
    position: absolute;
    width: 90px;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 2; 
}

.thought:hover {
    transform: scale(1.1);
}

/* positions */

/* left */
.t1 {
    top: 140px;
    left: -80px;
}

/* top-left */
.t2 {
    top: 20px;
    left: -10px;
}

/* top-right */
.t3 {
    top: 80px;
    right: -40px;
}

/* right lower */
.t4 {
    top: 200px;
    right: -50px;
}

@media (max-width: 768px) {

    /* allow scrolling if needed on small screens */
    body {
        overflow: auto;
    }

    /* make layout smaller */
    .home-layout {
        width: 260px;
        height: 500px;
    }

    /* scale character down */
    .main-character {
        width: 260px;
    }

    /* scale bubbles down */
    .thought {
        width: 70px;
    }

    /* reposition bubbles for mobile */
    .t1 {
        top: 100px;
        left: -60px;
    }

    .t2 {
        top: 10px;
        left: 0px;
    }

    .t3 {
        top: 60px;
        right: -50px;
    }

    .t4 {
        top: 170px;
        right: -60px;
    }
}