/* memiescape v2.0  
   contact : quentin.lobbe@iscpif.fr */

/* fonts */

@font-face {
  font-family: 'Inter-Regular';
  font-style:  normal;
  font-weight: 400;
  src: url("./fonts/Inter-Regular.woff2") format("woff2"),
       url("./fonts/Inter-Regular.woff") format("woff");
}

@font-face {
  font-family: 'Inter-Bold';
  font-style:  normal;
  font-weight: 700;
  src: url("./fonts/Inter-Bold.woff2") format("woff2"),
       url("./fonts/Inter-Bold.woff") format("woff");
}
 
/* grid */

body {
  font-family: "Inter-Regular";
  font-size: 16px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 95% auto;
  grid-gap: 10px;
  height: calc(100vh - 20px);
  color: #0d1824;
}

/* -------------------- */

.phylo-documentation {
  grid-row: 1;
  grid-column: 3 / 10;
  text-align: left;
}

/* -------------------- */

.phylo-footer {
  grid-row: 2;
  grid-column: 3 / 10;
  text-align: left;
}


/* classes */


/* ---------- fonts ---------- */


.font-bold {
  font-family: "Inter-Bold";
  text-transform: uppercase;
}

.font-small {
  color: #0d1824;
  font-size: 12px;
}
