body {
    background: #b3d9ff; /* baby blue */
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
}

/* Pumpkin wrapper for animation */
.pumpkin-container {
    animation: bounce 2s infinite ease-in-out;
}

/* Pumpkin Body */
.pumpkin {
    width: 200px;
    height: 160px;
    background: #ff8c00;
    border-radius: 50% / 60%;
    position: relative;
    box-shadow: inset -10px 0 0 #e67600, inset 10px 0 0 #e67600;
}

/* Pumpkin Stem */
.stem {
    width: 30px;
    height: 50px;
    background: #4f3d16;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Eyes */
.eye {
    width: 35px;
    height: 35px;
    background: black;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: absolute;
    top: 45px;
}

.eye.left {
    left: 40px;
}

.eye.right {
    right: 40px;
}

/* Mouth */
.mouth {
    width: 60px;
    height: 30px;
    background: black;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 50% 50%;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
