@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&display=swap');
body {
    margin: 0;
    height: 100vh;
    background: #fff0f3;
    font-family: 'Fredoka', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card {
    background: white;
    padding: 40px 20px;
    border-radius: 40px;
    box-shadow: 0 15px 0px #ffccd5;
    text-align: center;
    width: 300px;
    border: 4px solid #ff8fa3;
    z-index: 10;
}


/* Big Emoji "Images" */

.pookie-avatar {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
}

.pookie-text {
    color: #ff4d6d;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.btn-pookie,
.btn-yes {
    background: #ff758f;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 0px #c9184a;
    transition: 0.2s;
}

.btn-no {
    background: #ffccd5;
    color: #ff4d6d;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.hidden {
    display: none;
}


/* Animations */

.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.bounce {
    animation: bounce 0.8s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-20px);
    }
}

.falling-emoji {
    position: absolute;
    top: -50px;
    pointer-events: none;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}