body {
    background: linear-gradient(to right, #3e1f47, #5e3c8d); /* deep purples */
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    max-width: 600px;
}

h1 {
    font-size: 2.5em;
    color: #e0b3ff; /* soft lavender */
    text-shadow: 0 0 10px rgba(224, 179, 255, 0.3);
    margin-bottom: 1rem;
}

p {
    font-size: 1.2em;
    color: #d8c8f0; /* pale purple-gray */
    line-height: 1.6;
}

