body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    padding: 50px;
    background-color: #f0f4f8;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    animation: fadeIn 1s ease;
}

h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #e74c3c;
    animation: bounce 1s infinite;
}

p {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.5;
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
}

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

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