/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

/**
 * Normalize some browser inconsistencies
 */
html {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	padding: 0;
	color: #333;
    font-family: Signika-Light, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    text-transform: lowercase;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: 600;
	line-height: 1.2;
	clear: both;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	margin-bottom: 10px;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 16px;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

/* Paragraphs & Text */
p {
	margin: 0 0 1rem 0;
}

a {
	color: #c00;
	text-decoration: none;
	transition: color 0.3s ease;
}

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

strong,
b {
	font-weight: 600;
}

em,
i {
	font-style: italic;
}

/* Images */
img {
	max-width: 100%;
	height: auto;
	display: block;
	border: 0;
}

/* Lists */
ul,
ol,
dl {
	margin: 0 0 1.5rem 0;
	padding: 0;
}

li {
	list-style: none;
}

dt {
	font-weight: 600;
}

dd {
	margin: 0 0 1rem 0;
}

/* Tables */
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 0 1.5rem 0;
}

th,
td {
	border: 1px solid #ddd;
	padding: 0.75rem;
	text-align: left;
}

th {
	background-color: #f9f9f9;
	font-weight: 600;
}

/* Forms */
input,
select,
textarea,
button {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="url"],
textarea,
select {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 3px;
	background-color: #fff;
	transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
	outline: 0;
	border-color: #c00;
	box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	padding: 0.5rem 1rem;
	background-color: #c00;
	color: #fff;
	border: 1px solid #c00;
	border-radius: 3px;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background-color: #900;
	border-color: #900;
}

button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	transform: translateY(1px);
}

button:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

textarea {
	resize: vertical;
}

/* Code */
code,
pre {
	font-family: "Courier New", monospace;
	background-color: #f4f4f4;
	border-radius: 3px;
}

code {
	padding: 0.2rem 0.4rem;
	display: inline-block;
}

pre {
	padding: 1rem;
	overflow-x: auto;
	margin: 0 0 1.5rem 0;
}

pre code {
	background: none;
	padding: 0;
}

/* Blockquote */
blockquote {
	margin: 0 0 1.5rem 1.5rem;
	padding-left: 1rem;
	border-left: 3px solid #ddd;
	font-style: italic;
	color: #666;
}

blockquote p:last-child {
	margin: 0;
}

/* Horizontal Rule */
hr {
	border: 0;
	height: 1px;
	background-color: #ddd;
	margin: 1.5rem 0;
}

/* Screen Reader Text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 0 2px;
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Clearfix */
.clearfix:after,
.clearfix:before {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.authors-title {
    font-size: 1.5em 24px!important;
    line-height: 0.8em;
}
