/* @font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/intertight/v9/NGSwv5HMAFg6IuGlBNMjxLsH8ag.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-display: swap;
  src: url('/bold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Inter Tight", sans-serif;
    background: #F0F4F8;
    color: #000;
    padding: 2rem;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1rem;
    font-display: block;
}

h1, h2, h3, p, div {
    font-size: 1rem;
    font-weight: normal;
    color: #000;
}

a {
    /* color: #39b3d5; */
    color: #0578A3;
    text-decoration: underline;
}

a:hover {
    color: #9cd7ef;
}

header,
.header-nav {
    margin-bottom: 0rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left,
.header-right {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
    justify-content: center;
}

.header-left {
    align-items: flex-end;
    margin-right: 1em;
}

.header-right {
    align-items: flex-start;
    margin-left: 1em;
}

.header-center {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.header-logo {
    height: 6rem;
    width: auto;
}

.header-center h1 {
    font-size: 1rem;
    margin: 0;
}

button,
input[type="submit"],
.btn,
.subscribe-btn,
.discord-btn {
    background: transparent;
    border: none;
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

h1 {
    text-align: center;
}

input:-internal-autofill-selected,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #000 !important;
    -webkit-box-shadow: 0 0 0 1000px #f0f4f8 inset !important;
    border-bottom: 1px solid #000 !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #000 !important;
    font-family: "Inter Tight", sans-serif !important;
    transition: background-color 5000s ease-in-out 0s;
}

button:hover,
input[type="submit"]:hover,
.btn:hover,
.subscribe-btn:hover,
.discord-btn:hover {
    color: #fff;
}

input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 1rem;
    padding: 0.25rem 0;
    width: 100%;
    max-width: 20rem;
}

input:focus {
    outline: none;
}

input::placeholder {
    color: #000;
    opacity: 0.6;
}

input::-webkit-input-placeholder {
    color: #000;
    opacity: 0.6;
}

input::-moz-placeholder {
    color: #000;
    opacity: 0.6;
}

input:-ms-input-placeholder {
    color: #000;
    opacity: 0.6;
}

input.error-field {
    border-bottom-color: #ff0;
    background-color: rgba(255, 255, 0, 0.1);
}

.message {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.message.error {
    color: #ff6b6b;
}

.message.error::before {
    content: "Error: ";
    color: #ff6b6b;
}

.message.success {
    color: #51cf66;
}

.message.success::before {
    content: "Success: ";
    color: #51cf66;
}

.message-dismiss {
    margin-left: auto;
    text-decoration: underline;
    cursor: pointer;
    color: inherit;
}

.message-dismiss:hover {
    color: #fff;
}

.discord-icon {
    display: none;
}

.discord-info > div {
    display: inline;
}

.footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #000;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
