@import url("/fonts/inter/inter.css");
@import url("/fonts/mononoki/mononoki.css");

body,
html {
    margin: 0;
    width: 100vw;
    font-size: 95%;
    font-family: "Inter";
}

body {
    background-image: url("/Background.webp");
    background-color: #000;
    color: #fff;
}

:any-link {
    color: #9a9af0;
}

:any-link:active {
    color: #f09a9a;
}

main {
    padding: 8px;
    box-sizing: border-box;
    max-width: 60vw;
    margin: 0 auto;
    background-color: #19191b;
}

.breadcrumbs {
    list-style: none;
    padding: 8px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 60vw;
    background-color: #19191b;
}

.breadcrumbs li {
    display: inline-block;
}

.breadcrumbs li + li::before {
    content: "\00A5";
}

body > header {
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
    width: 60vw;
    margin: 0 auto;
    background-color: #0b0b0c;
}

body > header :any-link {
    color: #f1f1f1 !important;
    font-style: italic;
    text-decoration: none;
}

body > header h2 {
    font-size: large;
    margin: 0;
}

body > header nav {
    font-size: large;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid white;
}

body > header nav :any-link:not(:last-child) {
    margin-right: 15px;
}

tr > :not(:last-child) {
    padding-right: 15px;
}

body > footer {
    margin: 8px auto;
    margin-top: 12px;
    width: fit-content;
    padding: 15px;
    background-color: #19191b;
    position: absolute;
    top: 15px;
    right: 15px;
}

.footer-link-list-holder {
    flex: 1;
}

.footer-link-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-link-list-label {
    font-weight: 900;
    font-size: 1.05rem;
}

img {
    image-rendering: optimizeQuality;
}

abbr :any-link {
    text-decoration-style: dotted;
    text-decoration-color: currentColor;
}

.button-hotlink {
    display: block;
    margin-top: 3px;
}

input,
textarea {
    appearance: none;
    background-color: #000;
    color: #fff;
    border: 1px solid white;
}

