@import './variables.css';

html, body, #root {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font-family);
  line-height: var(--base-line-height);
  font-weight: var(--font-weight-normal);
  background: var(--primary-bg);
  color: var(--primary-text-color);
  min-width: var(--min-page-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}

#content {
  width: 100%;
}

#mainWrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
  margin-right: 10px;
}

.divider {
  border-top: var(--secondary-border-width) solid var(--contrast-border-color);

  width: 80%;

  margin: 0 auto;

  margin-top: 40px;
  margin-bottom: 40px;
}

@font-face {
  font-family: "Fira Code Nerd Font";
  src: url("/fonts/FiraCodeNerdFont-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Code Nerd Font";
  src: url("/fonts/FiraCodeNerdFont-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Code Nerd Font";
  src: url("/fonts/FiraCodeNerdFont-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Code Nerd Font";
  src: url("/fonts/FiraCodeNerdFont-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Code Nerd Font";
  src: url("/fonts/FiraCodeNerdFont-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Code Nerd Font Mono";
  src: url("/fonts/FiraCodeNerdFontMono-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Code Nerd Font Mono";
  src: url("/fonts/FiraCodeNerdFontMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Code Nerd Font Mono";
  src: url("/fonts/FiraCodeNerdFontMono-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Code Nerd Font Mono";
  src: url("/fonts/FiraCodeNerdFontMono-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Code Nerd Font Mono";
  src: url("/fonts/FiraCodeNerdFontMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}