@import url('https://fonts.googleapis.com/css?family=Cousine:400,700&subset=cyrillic-ext');

body,html{
    margin: 0px;
    padding: 0px;
    background-color: #000000;
    font-family: 'Cousine', monospace;
    color: #a2a1a1;
}
.text-center{
    text-align: center;
}
a,
a:visited{
    color: #abacb3;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
    color: #fff;
}
h1{
    color: #ff9800
}
span.cursor{
    background: url(cursor.gif) right center no-repeat;
    padding-right: 5px;
}
div.content{
    margin: auto;
    max-width: 700px;
}
#blog-content.content{
    max-width: 860px;
}
section,
footer{
    margin-top: 10px;
    padding: 10px 20px;
}

section{
    background: #353535;
    border-radius: 16px;
}
section:last-of-type{
    margin-bottom: 2rem;
}
footer{
    font-size: 80%;
    margin-top: 10px;
    background: #353535;
    text-align: center;
}

ul li{
    padding: .3rem 0;
    list-style: none;
}
.logo{
    text-align: center;
}
.logo svg{
    height: 64px;
    fill: #a2a1a1;
}
ul.tags li{
    margin: 0.3rem 0.1rem;
    display: inline-block;
    background: #4f565b;
    padding: 0.2em 1em 0.1em;
    border-radius: 14px;
}
ul.tags{
    font-size: .9rem;
    padding: 0;
    list-style: none;
}
.flex{
    display: flex;
    flex-direction: row;
}
.flex-column{
    flex-direction: column !important;
}
.justify-center{
    justify-content: center;
}
@media screen and (max-width: 900px) {
    .flex {
      flex-direction: column;
    }
}
.flex > div{
    margin: 1rem;
}
.m-3{
    margin: 0.75rem;
}
.bar{
    padding: 0.6em 1.8em;
    border-radius: 6px;
    color: #292828;
    font-weight: 900;
    background-size: 100px 80px;
    background-position: center center;
}
.gold{
    background-image: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}
/** checkbox **/
.toggle-container{
    display: flex;
    align-items: center;
    margin-bottom: .6rem;
}
.toggle-container > span{
    width: 50%;
}
.switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.switch input {
    display:none;
}

.slider {
    background-color: #292828;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: #d4d4d4;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .2s;
    width: 26px;
}

input:checked + .slider {
    background-color: #0f9515;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
article *{
    color:#2f2f2f;
    transition: .2s;
}
article{
    background: #f3f3f3;
    margin: 10px -20px;
    padding: 1rem 20px 1.6rem;
}
article h4{
    font-size: 1.3em;
    font-weight: 100;
}
article .body{
    margin-top: 2rem;
}
article .body h5{
    font-size: 1.2em;
    font-weight: 100;
    margin: .5em 0 0;
}
article .body figure{
    margin: 0;
}
article .body figure img{
    max-width: 100%;
    border-radius: 14px;
}
article .body a:hover{
    color: #000;
}
article .body ul{

    padding: 0 1em
}
article .body ul li{
    list-style: disc;
}

article .info{
    margin-top: -1.5rem;
    font-size: .9em;
    font-style: italic;
}