.header-site-title {
    background: linear-gradient(90deg, #ccf, #99f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body, html {
    background-color: black;
    margin: 0; padding: 0; border: 0;
    color: #eef;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background: radial-gradient(circle at 50% 50%, #002, black);
    min-height: 100vh;
    width: 100vw;
}

.site-header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: min(calc(100vw - 6rem), 867px);
    align-items: center;
    padding-top: 16px;
    border: 2px solid #40a;
    border-radius: 4rem;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: radial-gradient(circle at 0% 0%, #004, black);
    gap: 1rem;
}

.site-header-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}


.site-header > div > h1 {
    margin: 0;
}

.site-header > div > a {
    border-radius: 8px;
    padding: 6px 12px;
    color: #dcf;
    font-size: large;
    cursor: pointer;
    text-shadow: 1px 1px 0px black;
    transition: border-color 167ms, color 167ms;
    text-decoration: inherit;
}

.site-header > div > a:hover {
    color: #fff;
    border-color: #dcf5;
}

.header-site-title > a {
    text-decoration: inherit;
    color: inherit;
}

.header-page-name {
    color: #99f;
    font-weight: bold;
    font-size: large;
}

.main-content {
    background: radial-gradient(circle farthest-side at 10% 0%, #dcf1, #dcf0);
    border: 2px solid #dcf3;
    border-radius: 8px;
    padding: 8px 32px;
    color: #dcfd;
    font-size: large;
    text-shadow: 1px 1px 0px black;
    transition: border-color 167ms, color 167ms;
    margin: 2rem auto;
    width: min(calc(100vw - 128px), 750px);
    padding-bottom: 2rem;
}

.centered {
    text-align: center;
}

.main-content:hover {
    border-color: #dcf5;
    color: #dcf;
}

.main-content > hr {
    color: #dcf3;
    transition: color 167ms;
}

.main-content:hover > hr {
    color: #dcf5;
}

footer {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  width: 100vw;
}

.legal-link {
  color: #dcfa;
  text-decoration: none;
  transition: color 167ms;
}

.legal-link:hover {
  color: #dcff;
}

.lnt-button {
    padding: 8px 16px;
    font-size: large;
    background: transparent;
    color: #dcf;
    border: 2px solid #dcf3;
    border-radius: 8px;
    background: radial-gradient(circle farthest-side at 0% 100%, #dcf1, #dcf0);
    transition: border-color 167ms, color 167ms;
    cursor: pointer;
    text-decoration: inherit;
}

.lnt-button:hover {
    border-color: #dcf5;
}

.lnt-button:disabled, .lnt-button.disabled {
    border-color: #dcf1;
    color: #dcf8;
    cursor: not-allowed;
    pointer-events: none;
}

@media screen and (max-width: 667px) {
    .site-header {
        flex-flow: column nowrap;
        gap: 2px;
        width: calc(100vw - 56px);
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 1rem;
    }
    .main-content {
        padding-left: 16px;
        padding-right: 16px;
        width: calc(100vw - 64px);
    }
}