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

.container {
    text-align: center;
}

.bouncing-text {
    font-weight: bold;
    animation: bounce 1.5s infinite; 
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); } 
    60% { transform: translateY(-15px); }
}