/* Import a clean sans-serif font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

/* Reset & Center */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #8900ff;
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: white;
}

/* Centered container */
.container {
    max-width: 800px;
    padding: 30px;
}

/* Title formatting */
h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Paragraph formatting */
p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    max-width: 700px;
    margin: auto;
}