html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

@font-face {
    font-family: "Inter var";
    font-weight: 100 900;
    font-display: block;
    font-style: normal;
    font-named-instance: "Regular";
    src: url("assets/css/inter-roman-var.woff2?v=3.19") format("woff2");
}

html {
    color-scheme: light dark;
    font-family: "Inter var", sans-serif;
}
a, a:visited {
    color: #ff0000 !important;
    text-decoration: none;
}
a:hover,
a:focus-visible {
    color: #ff0000;
    text-decoration: underline;
}
.container {
    min-height: 100vh;
    background-color: transparent;
    display: block;
}
@media (max-width: 1023px) {
    .container {
        display: block;
    }
}
.center {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.top {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1023px) {
    .top,
    .center {
        width: 100%;
    }
}
.top {
    background-color: #ff0000;
    font-family: Tahoma, Verdana, Arial, sans-serif;
    font-size: 10pt;
    display: flex;
    padding-bottom: 5px;
    margin-bottom: 15px;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
@media (max-width: 1023px) {
    .top svg {
        min-height: 200px;
    }
}
.top svg {
    width: 300px;
    height: auto;
    opacity: 0.3;
    margin-right: 40px;
    margin-left: 40px;
}
@media (max-width: 1023px) {
    .top svg {
        width: 100px;
    }
}
div.white-bottom {
  border-bottom: 1.5px dotted #ccc;
  padding-bottom: 12px;
}
td.head {
  line-height: 1.2;
  padding: 0 2em;
}
td.head .top {
  font-size: 250%;
  font-weight: bold;
  opacity: 0.9;
}
td.head .bottom {
  font-size: 125%;
  color: #555;
}
.content {
    width: 100%;
    max-width: 100vh;
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr;
}
.text-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1023px) {
    .content {
        max-width: 100%;
        min-height: 100vh;
    }
    .text-container {
        width: 100%;
        margin-bottom: 20px;
    }
}
.text-container *:last-child {
    margin-bottom: 0;
}
div.border-bottom {
    border-bottom: 1.5px dotted #777;
    width: 100%;
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.code {
    font-size: 75px;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

/* https://seek-oss.github.io/capsize/ */

.code::before {
    content: "";
    margin-bottom: -0.2597em;
    display: table;
}

.code::after {
    content: "";
    margin-top: -0.287em;
    display: table;
}

@media (max-width: 1300px) {
    .code {
        font-size: 75px;
    }
}
@media (max-width: 1023px) {
    .code {
        font-size: 50px;
    }
}
.status {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.3;
}

.status::before {
    content: "";
    margin-bottom: -0.2758em;
    display: table;
}

.status::after {
    content: "";
    margin-top: -0.3031em;
    display: table;
}

@media (max-width: 1023px) {
    .status {
        font-size: 25px;
    }
}

div.gray-top { 
    border-top: 1px dotted #6c5d53;
    margin-top: 10px;
    padding-top: 10px;
    opacity: 0.5;
}

.description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* https://seek-oss.github.io/capsize/ */

.description::before {
    content: "";
    margin-bottom: -0.3752em;
    display: table;
}

.description::after {
    content: "";
    margin-top: -0.4026em;
    display: table;
}

.footer {
    border-top: 1px dotted #6c5d53;
    font-size: 14px;
    text-align: right;
    margin-top: auto;
    margin-bottom: 5px;
    padding-top: 5px;
    opacity: 0.5;
}

/* https://seek-oss.github.io/capsize/ */

.footer::before {
    content: "";
    margin-bottom: -0.3613em;
    display: table;
}

.footer::after {
    content: "";
    margin-top: -0.3887em;
    display: table;
}
.button-container {
    margin-bottom: 40px;
    text-align: center;
}
.button {
    all: unset;
    display: inline-block;
    background-color: #ff0000;
    color: white;
    font-weight: 500;
    border-radius: 3px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
}
