body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.emoji {
    font-size: 5em;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    margin-bottom: 10px;
}

.text-container {
    opacity: 0;
    animation: stampIn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s forwards;
}

.text {
    font-size: 2em;
    font-weight: bold;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes stampIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

audio {
    display: none;
}