body {
    margin: 0;
    padding: 0;
    background-color: #FF1493;
    color: #FFFFFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    animation: backgroundPulse 10s infinite alternate;
}

.container {
    text-align: center;
    transform: scale(0.95);
    animation: popIn 1.5s ease-out forwards;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.5rem;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

.fade-in.delay {
    animation-delay: 1s;
}

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

@keyframes popIn {
    to {
        transform: scale(1);
    }
}

@keyframes backgroundPulse {
    0% {
        background-color: #FF1493;
    }
    100% {
        background-color: #FF69B4;
    }
}
