/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:initial;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:initial}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:initial}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}

ul,ol,li {
	list-style: none;
}

p {
	margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: inherit;
}

img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
}

img {
    width: 100%;
}

html {
    font-size: 62.5%; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
}

#container {
	max-width: 43rem;
    min-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

nav#top-nav {
    display: flex;
    align-items: center;
}

nav#top-nav a img {
    object-fit: cover;
    width: 2.6rem;
    height: 2.6rem;
}

nav.site-menu {
    /* display: none; */
    margin-left: auto;
    display: flex;
    flex-shrink: 0;
    gap: 0.3rem;
}

span.placeholder {
    border-bottom: 2px dotted #26211c;
    margin: 0 1rem;
    width: 100%;
}

nav#top-nav a {
    display: flex;
    align-self: center;
}

.site-url {
    margin-left: .5rem;
    font-family: "Courier New", Courier, monospace;
    font-weight: 700;
    font-size: 1.8rem;
}

.avatar {
    width: 8rem;
    height: 8rem;
    background: #ccc;
    border-radius: 0.5rem;
    margin-right: 1rem;
}

header#user {
    display: flex;
    margin: 2rem 0;
}

span.name {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.addr {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description {
    font-size: 1.6rem;
}

.addr span {
    color: rgb(107, 114, 128);
}

.other-info {
    display: flex;
    line-height: 1;
    gap: 0.8rem;
}

.use-info {
    display: flex;
    flex-direction: column;
}

nav.main-menu {
    border-bottom: 1px solid rgb(229 231 235);
    display: flex;
    gap: 0.8rem;
}

nav.main-menu a {
    color: rgb(107, 114, 128);
    font-weight: 500;
}

nav.main-menu .current {
    color: rgb(37, 99, 235);
    border-bottom: 0.2rem solid rgb(37, 99, 235);
    padding-bottom: 0.75rem;
}

.content article {
    margin-top: 1.5rem;
    border-bottom: 1px solid rgb(229 231 235);
}

.post-meta {
    display: flex;
    margin-bottom: 0.5rem;
}

.btn {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}

.btn a {
    gap: 0.3rem;
    display: flex;
    align-items: center;
    color: rgb(107, 114, 128);
}

.post-meta a svg {
    color: rgb(107, 114, 128);
}

.post-content p {
    margin-bottom: 1rem;
}

.post-meta .time {
    color: rgb(107, 114, 128);
}

.tags {
    margin-bottom: 1.5rem;
}

.tags a {
    color: rgb(59, 130, 246);
}

.annotation {
    color: rgb(107, 114, 128);
}

.annotation span {
    color: rgb(59, 130, 246);
}

footer#site-info {
    padding: 1rem 0;
}