@font-face {
    font-family: "Noto Sans";
    src: url(/assets/font/NotoSans-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans";
    src: url(/assets/font/NotoSans-Italic.ttf) format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Noto Sans";
    src: url(/assets/font/NotoSans-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans";
    src: url(/assets/font/NotoSans-BoldItalic.ttf) format("truetype");
    font-weight: 700;
    font-style: italic;
}

:root {
    --theme-color: #7090C5;
    --default-color: #7090C5;
    --background-color: #2C2F33;
    --content-bg-color: #222222;
}

html, .lyrics {
    font-family: "Noto Sans", "Roboto", "Segoe UI", "Gill Sans", sans-serif;
}

body {
    background-color: #2C2F33;
}

a {
    outline: none;
    text-decoration: none;
    text-shadow: 0px 2px 5px black, 0px 2px black;
}
a:link {
    color: rgb(131, 167, 226);
}
a:visited {
    color: rgb(82, 109, 153);
}
a:focus {
    outline: dotted;
}
a:hover {
    outline: dotted;
}

#title {
    text-align: center;
    font-weight: 400;
    font-size: 0.87cm;
    color: white;
}

#body-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex {
    display:flex;
    align-items: center;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}
.flex-fill-width {
    justify-content: space-between;
}

article, .content-box {
    color: white;
    border: #111111;
    background-color: #222222;
    width: 35%;
    padding: 0 0.3cm 0 0.3cm;
    border-radius: 4px;
    margin-bottom: 1.5%;
}

@media (orientation: landscape) and (min-width: 860px) {
    article, .content-box {
        width: 35%;
        min-width: 684px;
        margin-bottom: 28px;
    }
}
@media (orientation: portrait), (max-width: 860px) {
    article, .content-box {
        width: 90%;
    }
}

article > h2, .content-box > h2 {
    color: white;
    padding-left: 5px;
    font-weight: 400;
    border-bottom: solid 1px #7090C5;
}

article > p, .content-box > p {
    text-align: justify;
}

blockquote {
    margin-left: 10%;
    margin-right: 10%;
    padding: 0.3cm 0.3cm 0.3cm 0.3cm;
    border-left: solid 1px #7090C5;
    
}

blockquote > p {
    margin: 0px;
}

footer {
    font-size: 0.425cm;
    text-align: center;
    color: white;
    font-family: "Noto Sans", "Roboto", "Segoe UI", "Gill Sans", sans-serif;
    vertical-align: bottom;
}

table {
  background-color: #2C2F33;
  border-collapse: collapse;
  border-spacing: 0px;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
table, th, td {
  padding: 5px;
  
}
thead {
  border-bottom: 1px solid #7090C5;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.img-box {
    flex-shrink: 1;
    padding: 6px;
}

.article-fill {
    margin-top: 1.5%;
    margin-bottom:1.5%;
}

.smallcaps {
    font-variant-caps: small-caps;
}

.collapsible {
    border: none;
    border-bottom: solid 1px rgb(131, 167, 226);
    color: white;
    background-color: #222222;
    padding: 0 0.3cm 0 0.3cm;
    margin: 0.3cm 0 0.3cm 0;
    margin-bottom: 1.5%;
    cursor: pointer;
    font-size: 20px;
    width: 100%;
}

.collapsible::before {
    content: '+';
    font-size: 16px;
    float: left;
}

.collapsible-active::before {
    content: '—';
    font-size: 16px;
    float: left;
}

.collapsible-active {
    
}

.collapsible-content {
    padding: 0.3cm 0.3cm 0.3cm 0.3cm;
    overflow: scroll;
    transition: max-height 0.2s ease-out;
    max-height: 0;
    background-color: #111111;
    display: none;
}

button, .button {
    appearance: none;
    -webkit-appearance: none;
    padding: 6px;
    border-radius: 8px;
    font-size: medium;
    background-color: #222222;
    color: white;
    border: 2px outset;
    border-color: #7090c5;
    cursor: pointer;
    margin-right: 0.4cm;
}

    button:hover, .button:hover {
        outline: none;
        text-decoration: underline;
        text-decoration-color: #7090c5;
    }

.button-group {
    display: inline-flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: baseline;
}
