@font-face {
  font-family: 'Quicksand';
  src: url('/assets/Quicksand-VariableFont_wght.woff2') format('woff2');
  font-weight: 1 999;
  font-display: swap;
}

:root {
  --ax-primary: #fec538;
  --ax-secondary: #2983e6;
  --ax-navbar-height: 6.5rem;
  --ax-font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  font-family: 'Quicksand', sans-serif;
}

html {
  color-scheme: dark;
}

body {
  background-color: #1c2127;
  color: #fff;
  position: relative;
}

.background-light {
  background-color: #262a32;
}

.navbar {
  transition-property: background-color, box-shadow;
  transition-duration: 300ms;
  transition-timing-function: ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(22, 22, 22, 0.7);
}

.text-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.card {
  max-width: 50rem;
}

h1 {
  font-size: 2.5rem;
}

@media screen and (max-width: 599px) {
  h1 {
    font-size: 2rem;
  }
}
