/*
Theme Name: Belarus Banned Books
Theme URI: https://bannedbooks.penbelarus.org
Author: the WordPress team
Author URI: https://bannedbooks.penbelarus.org
Description: Belarus Banned Books
Requires at least: 6.4
Tested up to: 6.4
Requires PHP: 7.4
Version: 1.0.8
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: belarus-banned-books
*/

/**
 * Theme variables
 *
 * @since 1.0.0
 */
:root {
    --theme-color-background: #191d1c;

    --theme-color: #feeb1a; /* #f7ee56 */

    --theme-padding: 20px;

    --theme-margin: 20px;

    --theme-font-family: 'Inter', sans-serif;

    /* 'Roboto Condensed', sans-serif; 'Rubik', sans-serif; "Work Sans", sans-serif; */
}

/**
 * Theme
 *
 * @since 1.0.0
 */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym,
address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer,
header, main, nav, section {
    display: block;
}

html, body {
    width: 100%;
    min-width: 320px;
    font-size: 16px;
    line-height: normal;
    font-family: var(--theme-font-family);
    font-style: normal;
    font-weight: normal;
    color: var(--theme-font-color);
    background-color: var( --theme-color-background );
    font-display: swap;
}

ul {
    padding: 0;
    margin: 0;
}

strong, b {
    font-weight: 600;
}

em {
    font-style: italic;
}

a {
    text-decoration: none;
    color: var( --theme-color );
    transition: .4s;
}

a:hover {
    opacity: 0.7;
}

.theme-home-main .theme-widget a, .theme-post-content a {
    text-decoration: underline;
    color: #191d1c;
    opacity: 0.9;
}

.theme-post-content a {
    color: #464e9c
}

.theme-content a:hover {
    text-decoration: none;
}

/** 
 * Scrollbar customize
 *
 * @since 1.0.0
 */
.theme-modal::-webkit-scrollbar {
    width: 6px;
}

.theme-modal::-webkit-scrollbar-track {
    background: var(--theme-color-background);
}

.theme-modal::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    border-radius: 0;
    border: none;
}