*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: #222;
    background: #faf9f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

header p {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

main p {
    font-size: 1.1rem;
    color: #444;
}
