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

body {
    background: #ffd6e7;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Area kelinci */
.container {
    width: 500px;
    height: 500px;
}

/* Tempat semua anggota tubuh */
.bunny {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Semua gambar anggota tubuh */
.bunny img {
    position: absolute;
}


/* ======================
        TELINGA
====================== */

.ear-left {
    width: 90px;
    top: 25px;
    left: 115px;
    z-index: 1;
}

.ear-right {
    width: 90px;
    top: 25px;
    right: 115px;
    z-index: 1;
}


/* ======================
        KEPALA
====================== */

.head {
    width: 260px;
    top: 75px;
    left: 120px;
    z-index: 2;
}


/* ======================
         MATA
====================== */

.eye-left {
    width: 35px;
    top: 160px;
    left: 175px;
    z-index: 3;
}

.eye-right {
    width: 35px;
    top: 160px;
    right: 175px;
    z-index: 3;
}


/* ======================
        HIDUNG
====================== */

.nose {
    width: 20px;
    top: 190px;
    left: 240px;
    z-index: 3;
}


/* ======================
        PIPI
====================== */

.cheek-left {
    width: 50px;
    top: 190px;
    left: 145px;
    z-index: 3;
}

.cheek-right {
    width: 50px;
    top: 190px;
    right: 145px;
    z-index: 3;
}


/* ======================
      MULUT KISS
====================== */

.mouth {
    width: 40px;
    top: 220px;
    left: 230px;
    z-index: 3;
}


/* ======================
        BADAN
====================== */

.body {
    width: 220px;
    top: 270px;
    left: 140px;
    z-index: 0;
}


/* ======================
        TANGAN
====================== */

.hand-left {
    width: 80px;
    top: 290px;
    left: 80px;
    z-index: 4;
}

.hand-right {
    width: 80px;
    top: 290px;
    right: 80px;
    z-index: 4;
}

/* ======================
       TEKS LOVE
====================== */

.text-love {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    font-size: 28px;
    color: #ff1493;
    font-weight: bold;
    font-family: Arial, sans-serif;
}


/* ======================
       HATI TERBANG
====================== */

#hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.love {
    position: absolute;
    bottom: 180px;
    font-size: 30px;
    animation: fly 3s linear forwards;
}

@keyframes fly {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-300px) scale(1.5);
        opacity: 0;
    }
}


/* ======================
       TANGAN BYE
====================== */

.hand-right {
    transform-origin: top center;
    animation: bye 0.5s infinite;
}

@keyframes bye {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(25deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


/* ======================
       MATA BERKEDIP
====================== */

.eye-left,
.eye-right {
    transform-origin: center;
    animation: blink 3s infinite;
}

@keyframes blink {
    0%, 92%, 100% {
        transform: scaleY(1);
    }

    95% {
        transform: scaleY(0.1);
    }
}


/* ======================
       TELINGA GOYANG
====================== */

.ear-left,
.ear-right {
    transform-origin: bottom center;
    animation: earMove 2s infinite;
}

@keyframes earMove {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


/* ======================
       MULUT KISS
====================== */

.mouth {
    animation: kiss 1.5s infinite;
}

@keyframes kiss {
    0%, 60%, 100% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.4);
    }
}