@font-face {
  font-family: "Exo";
  src: url("/fonts/Exo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Exo";
  src: url("/fonts/Exo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Exo";
  src: url("/fonts/Exo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

:root {
  --primary-color: #ffffff;
  --secondary-color: #2b2535;
  --tertiary-color: #f5f5f5;
  --quaternary-color: #868484;
  --background-color: #f8f9fa;
  --primary-font-color: #000000;
  --secondary-font-color: #4546e0;
  --tertiary-font-color: #2b2535;
  --text-color: #212529;
  --accent-color: #f12255;
  --secondary-accent-color: #ffd166;
  --tertiary-accent-color: #ffffff;
  --font-family: "Exo", sans-serif;
  --white: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --spacing-unit: 16px;
  --transition-speed: 0.3s;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--text-color);
  overflow: hidden;
}

h1,
h2,
h3,
p,
button {
  color: var(--primary-font-color);
  font-family: var(--font-family);
}

body {
  font-weight: 400;
}

h1,
h2 {
  font-weight: 700;
}

p,
button {
  font-weight: 500;
}
