/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background + layout */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f0f0f0, #dcdcdc);
    font-family: "Segoe UI", sans-serif;
}

/* Fancy container */
.container {
    padding: 40px 60px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: fadeIn 1.2s ease-out;
}

/* Dark text */
h1 {
    font-size: 3rem;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

p {
    font-size: 1.2rem;
    color: #444;
}

/* Smooth fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
