/*
Theme Name: Bullmania
Author: Aileen
Description: Simple custom WordPress theme for HTML-first content pages.
Version: 1.0.0
Text Domain: bullmania
*/


@font-face {
    font-family: "Inter";
    src: url("./assets/fonts/InterVariable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-body: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

* {
    box-sizing: border-box;
}

body {
  background-color: #0B0113;
  color: #e4eaef;
  position: relative;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}