/* Font declaration */   
@font-face {
  font-family: BryMeyLentariso;
  src: url("/Fonts-CSS/Lentariso-Re.ttf") format("truetype");
}

@font-face {
  font-family: BryMeyLentariso;
  src: url("/Fonts-CSS/Lentariso-Bd.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: BryMeyLentariso;
  src: url("/Fonts-CSS/Lentariso-It.ttf") format("truetype");
  font-style: italic;
}

@font-face {
  font-family: BryMeyLentariso;
  src: url("/Fonts-CSS/Lentariso-BdIt.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
/* End font declaration */

body {
  background-color: white;
  color: black;
  font-family: Lentariso, BryMeyLentariso;
}