*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#571438;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.card{
    width:240px;
    background:#34dd4a;
    border-radius:16px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.45);
}

.title{
    font-size:38px;
    font-weight:900;
    color:#222;
    line-height:1.1;
}

.emoji{
    font-size:34px;
    margin:18px 0;
    animation:bounce 1s infinite;
}

.button{
    width:100%;
    border:none;
    outline:none;
    cursor:pointer;
    background:#37b24d;
    color:#fff;
    font-size:20px;
    font-weight:bold;
    padding:16px;
    border-radius:8px;
    transition:.3s;
}

.button:hover{
    background:#2f9e44;
    transform:scale(1.05);
}

@keyframes bounce{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(8px);
    }
}