body {
    font-family: system-ui, sans-serif;
    background-color: #fafafa;
    color: #222;
    margin: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h1 {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    max-width: 600px;
    text-align: center;
    line-height: 1.5;
    color: #555;
}

a {
    color: #0070f3;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

a:hover {
    border-color: #0070f3;
}