@font-face {
  font-family: "K2D";
  src: url("/assets/fonts/k2d-latin-600-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito-latin-400-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: dark;
  --fibo-color-brand-prussian-blue: #030928;
  --fibo-color-brand-deep-navy: #081042;
  --fibo-color-brand-royal-blue: #0065f7;
  --fibo-color-brand-baby-blue-ice: #76b4ff;
  --fibo-color-text-primary: #ffffff;
  --fibo-color-text-secondary: #dce9ff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  place-items: center;
  overflow-x: hidden;
  background: var(--fibo-color-brand-prussian-blue);
  color: var(--fibo-color-text-primary);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
}

.notice {
  width: min(100% - 48px, 640px);
  padding: 48px 0;
  text-align: center;
  animation: notice-enter 450ms ease-out both;
}

.notice__logo {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto;
}

.notice__divider {
  width: 40px;
  height: 3px;
  margin: 40px auto 32px;
  border-radius: 999px;
  background: var(--fibo-color-brand-royal-blue);
}

h1 {
  margin: 0;
  font-family: "K2D", Arial, sans-serif;
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  max-width: 520px;
  margin: 20px auto 0;
  color: var(--fibo-color-text-secondary);
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.6;
}

@keyframes notice-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .notice {
    width: min(100% - 32px, 640px);
    padding: 32px 0;
  }

  .notice__logo {
    width: min(100%, 224px);
  }

  .notice__divider {
    margin-block: 32px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .notice {
    animation: none;
  }
}
