/**
 * Modern-CSS-Reset
 * https://github.com/hankchizljaw/modern-css-reset
 */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul[role='list'],
ol[role='list'] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    background-color: #010409;
    color: #C7C7C7;
}

a {
    color: #4493f8;
    text-decoration: none;
}

a:hover {
    color: #4493f8;
    text-decoration: underline;
}

header {
    background-color: #0E1117;
    padding: .3rem;
    display: flex;
    align-items: center;
    justify-content: left;
    border-bottom: 1px solid #31363D;
}

header input {
    background-color: #3F3F3F;
    outline: none;
    border: 2px solid transparent;
    color: #C7C7C7;
    border-radius: 2rem;
    height: 1.3rem;
    padding-left: .5rem;
    margin: 0 .4rem;
    font-size: .8rem;
    width: 20rem;
}

header input:focus {
    border-color: #3570EE;
}

header .btn {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin: 0 5px;
    height: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

header hr {
    margin: 0 2px;
    display: inline;
    width: 1px;
    height: .75rem;
    border: none;
    background-color: #31363D;
}

header svg path {
    stroke: #C7C7C7;
}

header .btn:hover svg path {
    stroke: #EEE;
}

header .btn:active svg path {
    stroke: #999;
}

header .btn:disabled svg path {
    stroke: #555;
}

header .btn-help {
    margin-left: auto;
}

header .btn-more {
    display: none;
}

logger {
    display: block;
    font-size: .75rem;
}

logger empty {
    display: block;
    text-align: center;
    margin-top: 14rem;
    font-size: 1rem;
    color: #8D96A0;
}

logger p {
    line-height: 1.4rem;
}

logger p:nth-child(odd) {
    background-color: #1F1F1F;
}

logger p:hover {
    background-color: #22262C;
}

logger time {
    color: #8D96A0;
}

article {
    padding: 2rem;
}

article h1 {
    margin-bottom: 1.2rem;
}

@media (max-width: 600px) {
    header hr, header .btn-help, header .btn-setting, header .btn-editor {
        display: none;
    }

    header .btn-more {
        display: block;
    }
}