/* Imports fonts */
@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-SemiBold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: Signika;
  src: url("../fonts/Signika-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: Signika;
  src: url("../fonts/Signika-SemiBold.ttf");
  font-weight: 600;
}

* {
  margin: 0;
  padding: 0;
}

body {
  /* Default font for texts */
  font-family: "signika", sans-serif;

  /*Background*/
  background-color: var(--BACKGROUND-COLOR);
}
