#pumpkin {
    width: 200px; /* Äiá»u chá»‰nh kĂ­ch thÆ°á»›c theo Ă½ muá»‘n */
    animation: shake 1s infinite alternate;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}
#pumpkin-container2 {
    position: fixed;
    top: 0; /* Báº¯t Ä‘áº§u tá»« trĂªn cĂ¹ng */
    left: 50%;
    pointer-events: none; /* Äá»ƒ khĂ´ng cáº£n trá»Ÿ cĂ¡c sá»± kiá»‡n chuá»™t */
    z-index: 1000; /* Äáº£m báº£o nĂ³ náº±m trĂªn cĂ¡c pháº§n tá»­ khĂ¡c */
}

.pumpkin2 {
    width: 30px; /* KĂ­ch thÆ°á»›c bĂ­ ngĂ´ */
    position: fixed;
    animation: fall linear infinite; /* Hiá»‡u á»©ng rÆ¡i */
}

@keyframes fall {
    0% {
        transform: translateY(0);
        opacity: 1; /* Hiá»ƒn thá»‹ bĂ­ ngĂ´ */
    }
    100% {
        transform: translateY(100vh); /* RÆ¡i xuá»‘ng háº¿t chiá»u cao mĂ n hĂ¬nh */
        opacity: 0; /* Biáº¿n máº¥t khi rÆ¡i xuá»‘ng */
    }
}

.snowEffect {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    overflow: hidden;
    pointer-events: none;
    /*KhĂ´ng cĂ³ dĂ²ng nĂ y lĂ  ko click Ä‘c cĂ¡c pháº§n tá»­ khĂ¡c*/
}

#snowcanvas {
    position: fixed;
    z-index: 0;
}