@font-face {
  font-family: 'Aveline';
  src: url('/assets/fonts/Aveline.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir';
  src: url('/assets/fonts/AvenirNext-Bold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@layer base {
  body {
    @apply font-sans;
    font-family: 'Aveline', system-ui, sans-serif;
  }
  .avenir {
    font-family: 'Avenir', system-ui, sans-serif;
  }
  .aveline {
    font-family: 'Aveline', system-ui, sans-serif;
  }
}

body {
  margin: 0;
  height: 100vh;
  background: radial-gradient(circle at center, #2c3a48 0%, #1a222b 60%, #0e141a 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
