@font-face {
  font-family: Orbit-B;
  src: url(../fonts/Orbit-B_Regular.otf);
}

@font-face {
  font-family: Microgramma;
  src: url(../fonts/Microgramma_D_Extended_Bold.otf);
}

@font-face {
  font-family: Stencil D;
  src: url(../fonts/Stencil_D_Regular.ttf);
}

@font-face {
  font-family: Bahnschrift;
  src: url(../fonts/Bahnschrift.ttf);
}

@font-face {
  font-family: Chiller;
  src: url(../fonts/Chiller.TTF);
}
body
{
    display: flex;
    flex-direction: column;
    margin: 0;
    background-color: darkcyan;
    color: white;
    font-family: Bahnschrift;
    min-height: 100vh;
}
#header
{
    display: flex;
    background-color: black;
    width: 100%;
    align-items: center;
    height: 60px;
}
#logo
{
    font-size: 175%;
    font-family: Chiller;
    margin: 0px 10px;
    padding: 5px;
    text-align: center;
}
#logo_r
{
    font-size: 50%;
    font-family: Orbit-B;
    text-align: center;
    text-transform: uppercase;
}
#menu ul
{
    display: flex;
    margin: 0;
    padding: 0;
    height: 60px;
    align-items: stretch;
}
#menu ul li
{
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0px 5px;
}
#menu ul li a
{
    text-decoration: none;
    color: white;
    padding: 0 10px;
    display: flex;
    height: 60px;
    line-height: 60px;
}
#menu ul li a:hover
{
    background-color: #444;
    cursor: pointer;
}
#menu ul li.lng
{
    margin-left: auto;
}
#content
{
    flex: 1;
    margin: 10px;
}
#content img
{
    height: 225px;
    width: 400px;
}
#content img:not(:first-of-type)
{
    margin-top: 20px;
}
#content img.flag
{
    height: 39px;
    width: 60px;
}
#content img.pre
{
    height: 180px;
    width: 320px;
    padding: 0%;
}
#content img.nt
{
    height: 180px;
    width: 320px;
    padding: 0%;
    filter: grayscale(1);
}
#content img.char_chars
{
    height: 200px;
    width: 200px;
}
#content p:not(.odc_t)
{
    margin-top: 5px;
}
.disc_inv
{
    display: inline-flex;
    background-color: #7289DA;
    padding: 5px 15px;
    justify-content: center;
    border-radius: 8px;
}
.disc_inv
{
    color: white;
    text-decoration: none;
    width: fit-content;
}
.disc_inv:hover {
    background-color: #4752C4;
    text-decoration: underline;
}
.char_card
{
    display: flex;
    border: 2px solid white;
    border-radius: 10px;
    width: 60%;
    margin: 10px 0px;
}
.char_pic
{
    border-right: 2px solid white;
}
.char_desc
{
    align-items: center;
    min-height: 100%;
    padding: 0px 15px;
}
.odc_t
{
    padding: 0;
    margin: 0;
}
.t_lang td
{
    padding: 0px 5px;
    text-align: center;
    font-size: 80%;
}
.seasons
{
    border-collapse: collapse;
}
.seasons td
{
    border: 1px solid;
    padding: 0;
    text-align: center;
}
.seasons td.em_e
{
    border: 0;
    visibility: hidden;
}
.old_date
{
    font-style: italic;
    color: #CCC;
}
span.redaction
{
    background-color: #222;
    color: red;
    padding: 2px;
    font-family: Stencil D;
    font-weight: 500;
}
#footer
{
    background-color: black;
    font-family: Microgramma;
    text-align: center;
    font-size: 110%;
}