/* cyrillic-ext */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url(one.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url(two.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url(three.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url(four.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url(five.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* reset */

* {
	margin: 0;
	padding: 0;
}

:root {
	--background: #454d55;
	--red: #ff3b30;
	--table-color: #e5e5e5;
	--white: #ffffff;
}

html {
	height: 100%;
	background: var(--background);
	color: var(--white);
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font-family: 'Merriweather', Helvetica, Arial, sans-serif;
	padding: 0rem;
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
	min-height: 100%;
	text-rendering: optimizeLegibility;
}

header {
	display: block;
	padding-bottom: 0rem;
	padding-left: 0rem;
	padding-right: 0rem;
	padding-top: 1.3rem;
	border-bottom: .07em solid #eee;
}

.title {
	color: var(--red) !important;
	float: left;
}

@media all {
	html {
		font-size: 18px;
	}
	body>* {
		font-size: 100%;
		margin-left: 7.5rem;
		margin-right: 7.5rem;
	}
}

@media all and (max-width:840px) {
	html {
		font-size: 15px;
	}
	body>* {
		margin-left: 5.5rem;
		margin-right: 5.5rem;
	}
}

@media all and (max-width:760px) {
	body>* {
		margin-left: 2.5rem;
		margin-right: 2.5rem;
	}
}

@media all and (max-width:580px) {
	body>* {
		margin: .7rem 1.5rem 0 1.5rem;
	}
}

h2,
h3,
h4,
h5,
h6 {
	line-height: 1.35;
	margin-top: .6em;
	margin-bottom: .6em;
}

h1 {
	font-size: 1.8em;
}

h2 {
	font-size: 1.6em;
}

h3 {
	font-size: 1.4em;
}

h4 {
	font-size: 1.3em;
}

h5,
h6 {
	font-size: 1.2em;
}

div.content {
	display: block;
	padding: 1rem 0;
}

@media all and (max-width:520px) {
	div.content {
		padding: 0;
	}
}

footer {
	display: block;
	padding: .5rem 0 5.5rem 0;
}

.list_item {
	line-height: 1.45;
	margin-bottom: 1em;
}

aside {
	font-size: .9em;
	line-height: .9;
	color: #d0d0d0;
}

aside em {
	font-size: .7rem;
}

p {
	margin-bottom: 1em;
	line-height: 1.45;
}

ul,
ol {
	margin-bottom: 1em;
	padding-left: 1em;
}

li {
	line-height: 1.75em;
	margin-left: .75em;
}

div.archive ul li {
	list-style-type: none;
}

table {
	margin-bottom: 1.5rem;
	border: 1px solid val(--table-color);
	border-collapse: collapse;
	width: 95%;
}

td,
th {
	text-align: left;
	padding: .25rem .5rem;
	border: 1px solid val(--table-color);
}

tbody tr:nth-child(odd) td,
tbody tr:nth-child(odd) th {
	background-color: #555555;
}

img {
	display: block;
	border-radius: 5px;
	max-width: 100%;
}

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

a:active {
	color: #777;
}

a:hover {
	color: var(--red);
}

p a {
	color: var(--white);
}

code,
pre {
	font-family: Menlo, Monaco, 'Courier New', monospace;
}

code {
	padding: .25em .25em;
	margin-bottom: 20px;
}

pre {
	font-size: .9rem;
	background: #f8f8f8;
	padding: 1em;
	margin-bottom: 20px;
	overflow-x: auto;
	vertical-align: text-bottom;
}

figcaption {
	font-weight: 400;
	font-style: italic;
	font-size: .7em/1.52;
	line-height: 1.3;
	color: #666665;
	outline: 0;
	z-index: 300;
	text-align: center;
}

blockquote {
	border-left: 3.5px solid #0594cb;
	margin: .7em 10px;
	padding: .7em 20px;
}

blockquote p {
	display: inline;
}
