<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* &lt;========== IMPORT FONT'S ==========&gt; */
/* ------ ALEGREYA ~ IBM PLEX SERIF ~ INTER ~ NUNITO SANS ~ POPPINS ~ SORA ------ */
@import url("https://fonts.googleapis.com/css2?family=Alegreya:wght@500&amp;family=IBM+Plex+Serif:wght@400;600;700&amp;family=Inter:wght@300;400;500;600;700;900&amp;family=Nunito+Sans&amp;family=Poppins:wght@500;600;700;800;900&amp;family=Sora:wght@600;700&amp;display=swap");

/* ------ BEBAS NEUE ~ EB GARAMOND ~ GELASIO ~ MONTSERRAT ------ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&amp;family=EB+Garamond:wght@400;700&amp;family=Gelasio:wght@600&amp;family=Montserrat:wght@300;600&amp;display=swap');

:root {
  --ff-Inter: "Inter", sans-serif;
  --ff-poppins: "Poppins", sans-serif;
  --ff-nunito-sans: "Nunito Sans", sans-serif;
  --ff-ibm-plex-serif: "IBM Plex Serif", serif;

  --ff-bebas-neue: "Bebas Neue", sans-serif;
  --ff-garamond: "EB Garamond", serif;
  --ff-gelasio: "Gelasio", serif;
  --ff-montserrat: "Montserrat", sans-serif;

  --primary-blue: #113167;
  --primary-brown: #8c1c40;
  --primary-green: #02807e;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  color: unset;
  text-decoration: none;
}

/* &lt;====== SCROLL TO THE TOP ========&gt; */
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}
</pre></body></html>