:root {
    --bg: #0e0e0e;
    --fg: #eaeaea;
    --muted: #777;
    --line: #222;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    text-wrap: pretty;
}
body {
    background: var(--bg);
    color: var(--fg);
    font:
        15px/1.5 system-ui,
        -apple-system,
        sans-serif;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 24px;
}
main {
    width: 100%;
    max-width: 520px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 20px 20px;
    position: relative;
    scale: 1.2;
}
img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    position: absolute;
    top: -28px;
    left: 20px;
    background: var(--bg);
}
h1 {
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0 14px;
}
h1 span {
    color: #555;
    font-weight: 400;
}
p {
    color: var(--muted);
    margin-bottom: 18px;
    white-space: pre-line;
    font-size: 14px;
}
nav {
    margin-bottom: 18px;
}
nav a {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 6px 6px 0;
    border: 1px solid var(--line);
    border-radius: 777px;
    color: inherit;
    text-decoration: none;
    font-size: 13px;
}
nav a:hover {
    border-color: #444;
}
input {
    width: 100%;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: inherit;
    padding: 6px 0;
    margin-bottom: 14px;
    font-size: 14px;
    outline: none;
}
input::-webkit-input-placeholder {
    color: #555;
}
input::-moz-placeholder {
    color: #555;
}
input:-ms-input-placeholder {
    color: #555;
}
input::-ms-input-placeholder {
    color: #555;
}
input::placeholder {
    color: #555;
}
footer {
    font-size: 11px;
    color: #555;
}