/*
        http://meyerweb.com/eric/tools/css/reset/
        v2.0 | 20110126
        License: none (public domain)
        */
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,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* demo styles */
body {
  background: #f0f0f0;
  color: #000;
}

.font-container {
  overflow-x: auto;
  overflow-y: hidden;
  line-height: 1.3;
  white-space: nowrap;
  padding-bottom: 5px;
}
h1 {
  position: relative;
  background: #444;
  font-size: 32px;
  color: #fff;
  padding: 10px 20px;
  margin: 0 -20px 0 -20px;
}
.letters {
  font-size: 25px;
  margin-bottom: 20px;
}
.s10:before {
  content: "10px";
}
.s11:before {
  content: "11px";
}
.s12:before {
  content: "12px";
}
.s14:before {
  content: "14px";
}
.s18:before {
  content: "18px";
}
.s24:before {
  content: "24px";
}
.s30:before {
  content: "30px";
}
.s36:before {
  content: "36px";
}
.s48:before {
  content: "48px";
}
.s60:before {
  content: "60px";
}
.s72:before {
  content: "72px";
}
.s10:before,
.s11:before,
.s12:before,
.s14:before,
.s18:before,
.s24:before,
.s30:before,
.s36:before,
.s48:before,
.s60:before,
.s72:before {
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  font-style: normal;
  color: #999;
  padding-right: 6px;
}
pre {
  display: block;
  padding: 9px;
  margin: 0 0 12px;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.428571429;
  color: #333;
  font-weight: normal;
  font-style: normal;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  overflow-x: auto;
  border-radius: 4px;
}


.demo {
  padding-inline: 20px;
  padding-block: 0;
  background: #fff;
  margin-bottom: 10px;
}
.demo .accordion-title {
  position: relative;
  cursor: pointer;
}

.demo .accordion-title:after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #FFF;
}

.demo .accordion-container {
  height: 0;
  overflow: hidden;
}

.demo.open {
  padding-block: 0 10px;
  margin-bottom: 40px;
}

.demo.open .accordion-title:after {
    transform: translateY(-50%) rotate(180deg);
  }

.demo.open .accordion-container {
  height: auto;
}

.demo.open h1 {
  margin-bottom: 12px;
}

.page {
    max-width: 1380px;
    width: 100%;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    gap: 30px;
  }

.aside {
    width: 20%;
    background: #FFF;
    padding: 20px;
}

.fonts {
    width: 80%;
}

#menu li {
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

#menu li a {
    text-wrap: nowrap;
    text-decoration: none;
    color: initial;
}

#menu li a:hover {
    text-decoration: underline;
}