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

body {
    font-family: 'IBM Plex Mono', monospace;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20vh;
    background: #fff;
    color: #222;
}

main {
    text-align: center;
}

h1 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}