@font-face {
    font-family: PolymathDisplay;
    src: url(../fonts/PolymathDispDemo-Medium.otf);
    font-weight: bold;
}

@font-face {
    font-family: VulfMono;
    src: url(../fonts/VulfMonoDemo-Regular.otf);
    font-weight: 400;
}
@font-face {
    font-family: VulfMono;
    src: url(../fonts/VulfMonoDemo-Italic.otf);
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: VulfMono;
    src: url(../fonts/VulfMonoDemo-Light.otf);
    font-weight: light;
}
@font-face {
    font-family: VulfMono;
    src: url(../fonts/VulfMonoDemo-LightItalic.otf);
    font-weight: light;
    font-style: italic;
}

@font-face {
    font-family: VulfMono;
    src: url(../fonts/VulfMonoDemo-Bold.otf);
    font-weight: bold;
}
@font-face {
    font-family: VulfMono;
    src: url(../fonts/VulfMonoDemo-BoldItalic.otf);
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: FatFace;
    src: url(../fonts/OhnoFatFaceDemo-12PtCondensed.otf);
}

body {
    /* font-family: "Cutive Mono", monospace; */
    font-family: VulfMono;
    font-style: normal;
    font-weight: 400;

    margin: 40px auto;
    max-width: 650px;
    line-height: 1.6;
    color: #444;
    padding: 0 15px;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

table,tr {
    width: 100%;
    padding: 0;
}

h1, h2, h3, h5, h4, h6{
    margin:0;
    padding:0;
    font-weight: inherit;
}

h1 {
    font-family: VulfMono;
    font-style: italic;
    font-weight: bolder;
}

h4 {
    display: flex;
    align-items: center;
    gap: 1ch;
  }

h4::before {
content: "---";
}

h4::after {
content: "-------------------------------------------------------------------------------------------------------------------------";
overflow: hidden;
white-space: nowrap;
text-overflow: clip;
flex: 1;
}

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px) {
h1 {
    width:max-content;
    display: block;
    margin: 0;
    padding: 0;
}
h2, h3, h4, body { font-size: 14px;}
td {font-size: 14px;}
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
h1 {
    width: 100%;
    display: block;
}
h2, h3, h4, body{ font-size: 12px;}
td {
    font-size: 12px;
    word-break: break-word;
}
h3 {
    font-size: 10px;
}
.collapse {display: none;}
}

a {
    color: #CE2029;
}
img {
    border-radius: 10px;
}
li {
    padding:5px;
}
img {
    max-width: 100%;
    height: auto;
    /* center */
    display: block;
    margin-left: auto;
    margin-right: auto;
}