body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f0f8ff;
    color: #333;
    overflow: hidden; /* Hide scrollbars from blurred background */
}

.background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    filter: blur(150px);
    z-index: -1;
}

header {
    text-align: center;
    padding: 50px 20px;
    color: white;
}

header h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    animation: fadeInDown 1s ease-out;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    text-align: center;
    padding: 20px;
}

.hero h2 {
    font-size: 2.5rem;
    color: white;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: backwards; /* Start animation from off-screen */
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: backwards;
}

footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.7);
    position: absolute;
    bottom: 0;
    width: 100%;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
