@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import "./scrollbar.css";
@import "./sidepanel.css";
@import "./footer.css";
@import "./tables.css";
@import "./colors.css";

@import url('https://fonts.googleapis.com/css2?family=Belanosima&display=swap');

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

body {
    height: 100%;
    width: 100%;
    font-family: "Belanosima";
    background-color: var(--bg-body);
    color: var(--text);
    margin: 0;
}

h1 {
    font-size: 32px;
    color: var(--text-red-light);
    text-shadow: 0px 0px 1px var(--shadow);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 2;
}

h2 {
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 24px;
    text-align: center;
    line-height: 2;
    color: var(--text-red);
    text-decoration:double;
    font-weight: bold;
}

h3 {
    font-size: 18px;
    line-height: 2;
    color: #c63327;
    font-weight: bold;
    font-size: 20px;
    margin: 0;
}

h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
    margin-block-start: 0.8em;
    margin-block-end: 0.8em;
}

p {
    font-size: 16px;
    text-align: justify;
    margin-top: 0.25rem;
    line-height: 1.625;
}
  
a, a:hover, a:focus, a:active {
    color: inherit;
}

a {
    position: relative;
    text-decoration: underline;
}

b {
    color: var(--text-bold);
}
  
a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: var(--text-red);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

a:hover::before {
    transform-origin: center;
    transform: scaleX(1);
}

li {
    font-size: 14px;
    margin: 5px;
    line-height: 1.625;
}

hr {
    height: 2px;
    width: 100%;
}

hr {
    overflow: visible; /* For IE */
    padding: 0;
    border: none;
    border-top: medium double var(--bg-black);
    color: var(--bg-black);
    text-align: center;
}
hr:after {
    content: "§";
    display: inline-block;
    position: relative;
    top: -0.7em;
    font-size: 1.5em;
    padding: 0 0.25em;
    background: var(--bg-body);
    transition: 4s all;
}

table {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

button {
    background-color: var(--bg-black);
    color: var(--text-white);
    border-radius: 2px;
    user-select: none;
    padding: 0.5em;
}

button:hover {
    box-shadow: 1px solid black;
    transform: scale(1.02);
    font-weight: bold;
    cursor: pointer;
}

aside {
    background-color: var(--bg-header);
    color: var(--text-red-light);
    font-family: monospace;
    padding: 10px;
    text-shadow: 1px 1px 1px var(--shadow);
    position: absolute;
    box-shadow: 1px 1px 5px 2px var(--shadow);
    position: fixed;
    z-index: 999;
    left: 0;
    margin-left: -10%;
}

aside li {
    font-size: 12px;
    white-space: nowrap;
    text-align: left;
    line-height: 2;
}

header,aside {
    top: 0;
    transition: top 0.3s;
    text-align: center;
    border-collapse: collapse;
    font-weight: bold;
}
header {
    background-color: var(--bg-header);
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}
header,aside h1{
    margin-bottom: 0px;
}

main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.main-interface {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    transition: 0.3s;
}

aside a {
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
    cursor: pointer;
}

section h1 {
    text-align: center;
}

img {
    width: 100%;
}

.png-img {
    filter: drop-shadow(5px 5px 10px var(--shadow))
}

.contain {
    object-fit: contain;
}

.cover {
    object-fit: cover;
}

.no-decoration {
    text-decoration: none;
}

*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.text-indent {
    text-indent: 20px;
}

.no-indent {
    text-indent: 0;
}

.hidden {
    display: none;
}

.no-list-style {
    list-style-type: none;
    margin-left: 0;
}
.with-list-style {
    list-style-type: circle;
    margin-left: 1em;
}

.highlighted {
    background-color: #c6342767!important;
}