:root {
    --text-color: black;
    --background-color: #fff;
    --color-canvas-subtle: #f6f8fa;
    --tag-color: #333333b2;
    --label-bg-color: #1B1b1b;
    --label-text-color: #f6f6f8fa;
    --heading-color: #06283D;
    --color-theme: #F15412;
    --border-color: #404040;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #fff;
        --background-color: #1B1b1b;
        --tag-color: rgba(255, 255, 255, 0.459);
        --label-bg-color: gray;
        --label-text-color: #1B1b1b;
        --heading-color: white;

    }

}

body {
    transition: 0.5ms !important;
    padding: 13px;
    margin: auto;
    max-width: 48rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif; 
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    color: var(--heading-color) !important;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

/* nav */
nav a{
    margin-right:10px;
    font-size:15px;
}

nav{
    margin-bottom: -200px;
}
/* end of nav */
/* title */
h4 >a {
    color: var(--heading-color);
}

span>a {
    font-weight: thin;
    margin-right: 5px;

    font-size: 85%;
}

/* slogan */
#slogan{
    color: var(--label-bg-color) !important;
    font-weight: bold;
    float: left;
    margin-top: -30px;
    width: 100%;
    width:100%;
    font-size:15px;
}

/* main */
main {
    float: left;
    margin-top: 20px;
    width: 100%;
}

/* --------------- Code Block ----------- */
label {
    float: left;
    width: 100%;
    line-height: 30px;
    height: 30px;
    font-size: 80%;
    text-align: center;
    font-weight: bold;
    color: white;
}

span>a {
    font-size: 13px;
    text-decoration: none;
    line-height: 20px;

}

span>a:hover, nav a:hover,h4 a:hover,#terms a:hover{
     color: var(--heading-color);
    transition: 0.5ms;
    border-bottom: 2px solid var(--heading-color);
    font-weight: bold;
}

label span {
    border-top-right-radius: 6px;
    background-color: var(--label-bg-color) !important;
    color: var(--label-text-color);
    float: left;
    width: 10%;
    height: 30px;
}

pre {
    margin-top: 40px !important;
    margin-bottom: 20px;
    padding: 16px;
    overflow: auto;
    font-size: 85%;
    line-height: 1.45;
    border: 1px solid #333333b2;
    white-space: pre-line;

}

/* code block label */
span {
    background-color: transparent !important;
}

/* End --------------- Code Block ----------- */
/* Img */
img {
    float: left;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 6px;
    -webkit-box-shadow: 8px 10px 12px 2px rgba(0, 0, 0, 0.21);
    box-shadow: 8px 10px 12px 2px rgba(0, 0, 0, 0.21);
}

time {
    color:var(--heading-color);
    font-size: 90%;
    float: left;
    margin-top: -25px;
    margin-bottom: 5px;
    font-weight: thin;
    width: 100%;
}

/* End img */
/* single */
#content{
    font-size:16px;
    margin-top:20px;
    font-weight: 400;
}
#terms{
    width:100%;
    margin-top:20px;
}
#terms a{
    line-height:20px;
    margin-right:20px;
    font-size:85%;
}
/* code label */
#time{
    background-color: red;
    float:left;
    margin-right:25px;
    color:#404040;
}

/* End of article */
