body {
    font-family: 'Comfortaa', cursive; /* A playful, rounded font */
    background-color: #ffe4e1; /* Pastel pink */
    color: #8a2be2; /* Soft purple text */
    text-align: center;
    margin: 0;
    padding: 20px;
}

header {
    background-color: #f0f8ff; /* Alice blue */
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #ff69b4; /* Hot pink */
    font-size: 3em;
    text-shadow: 2px 2px #fff;
}

main {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block; /* To center the block */
    max-width: 800px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
}

.cute-element {
    font-size: 4em;
    margin: 10px;
    display: inline-block;
    animation: bounce 2s infinite ease-in-out;
}

footer {
    margin-top: 30px;
    color: #b0c4de; /* Light steel blue */
    font-size: 0.9em;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}