:root {
  --primary-color: rgb(50, 51, 55);
  --background-color: #FEFBF9;
  --accent-color: rgb(73, 114, 190);
  --shadow-color: grey;
  --error-color: #FF1C1C;
  --link-color: #1c4dff;
  --highlight-color: #E4E1E0;

  --content-width: 1000px;
  
  --title1-text: 2rem;
  --title2-text: 1.5rem;
  --title3-text: 1.25rem;
  --body-text: 1rem;
  --btn-text: 1.125rem
}

body {
  line-height: 1.25;
}


@font-face {
  font-family: 'Archivo';
  src: url('../styles/fonts/Archivo-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('../styles/fonts/Archivo-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('../styles/fonts/Archivo-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('../styles/fonts/Archivo-ExtraBold.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-synthesis: none;

  margin: 0;
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
}