@font-face {
  font-family: 'SkolaSans';
  src: url("/assets/SkolaSans-Light-ada8ef0b.otf") format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SkolaSans';
  src: url("/assets/SkolaSans-LightItalic-b5e9acde.otf") format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SkolaSans';
  src: url("/assets/SkolaSans-Regular-6baf11d6.otf") format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SkolaSans';
  src: url("/assets/SkolaSans-RegularItalic-5845737d.otf") format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SkolaSans';
  src: url("/assets/SkolaSans-Medium-66525759.otf") format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SkolaSans';
  src: url("/assets/SkolaSans-MediumItalic-5a546f9a.otf") format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SkolaSans';
  src: url("/assets/SkolaSans-Bold-771d7660.otf") format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SkolaSans';
  src: url("/assets/SkolaSans-BoldItalic-b04dbaeb.otf") format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SkolaSans';
  src: url("/assets/SkolaSans-Black-3b82bb3e.otf") format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SkolaSans';
  src: url("/assets/SkolaSans-BlackItalic-9b6ec335.otf") format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.font-serif-italic {
  font-family: 'SkolaSans', serif;
  font-style: italic;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.animate-fade-in {
  animation: fadeIn 0.5s ease-out;
}
