<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ===============================
   GLOBAL STYLES
================================== */

:root {
  --nav-blue: #264065;
  --background: #ffffff;
  --text: #333333;
  --text-footer: #ffffff;
}

body {
  font-family: "Poiret One", sans-serif;
  font-weight: 600;
  font-style: normal;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

/* ===============================
    HEADER
================================== */

header {
  font-family: "Petrona", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  border-bottom: 1px solid;
}

nav {
  background-color: var(--background);
}

.nav-bar-line {
  background-color: var(--nav-blue);
  height: 30px;
}

/* ===============================
    FOOTER
================================== */

footer {
  font-family: "Poiret One", sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: var(--nav-blue);
  color: var(--text-footer);
  font-size: 1rem;
}

#footer {
  display: flex;
  justify-content: space-around;
  width: auto;
}

/* ===============================
    HOME
================================== */

.title {
  font-family: "Petrona", serif;
  font-weight: 500;
  font-style: normal;
}
</pre></body></html>