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

body {
    font-family: monospace;
    max-width: 480px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    line-height: 1.6;
    color: light-dark(#111, #ccc);
    background: light-dark(#fff, #111);
    color-scheme: light dark;
    overflow-wrap: anywhere;
    word-break: break-word;
}

h1 {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

p {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

form {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

input {
    font-family: monospace;
    font-size: 0.875rem;
    padding: 0.5rem;
    background: transparent;
    border: 1px solid light-dark(#ccc, #333);
    color: inherit;
    outline: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

input::placeholder {
    color: light-dark(#999, #555);
}

input:focus {
    border-color: light-dark(#666, #666);
}

button {
    font-family: monospace;
    font-size: 0.875rem;
    padding: 0.5rem;
    background: transparent;
    border: 1px solid light-dark(#ccc, #333);
    color: inherit;
    cursor: pointer;
    overflow-wrap: anywhere;
    word-break: break-word;
}

button:hover {
    border-color: light-dark(#666, #666);
}

a {
    color: inherit;
    text-decoration: underline dotted;
    text-underline-offset: 0.15em;
    border-bottom: 1px dotted light-dark(#ccc, #333);
    padding-bottom: 1px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

a:active {
    color: light-dark(#000, #fff);
}