/* static fonts */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/Inter-Regular.woff2") format("woff2"); }
@font-face { font-family: "Michroma"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/Michroma-Regular.woff2") format("woff2"); }

* { box-sizing: border-box; }

html {
    background: black;
    color: white;
    height: 100%;
}

body {
    min-height: 100%;
    max-width: 1024px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-family: 'Michroma', sans-serif;
    font-weight: normal;
    margin: 0 16pt 16pt 16pt;
    padding: 0 24pt;
    font-size: 48pt;
    text-align: center;
    line-height: 0.88;
    border-bottom: 4pt solid;
    border-image: linear-gradient(to right, transparent 2%, red, orange, transparent 98%) 1;
}

