<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  --raleway: 'Raleway', sans-serif;
  --playfair: 'Playfair Display', serif;

  --green: #EDCC82;
  --red: #C99C38;
  --blue: #20273C;
  --orange: #BB8F38;
  --dark-blue: #161B27;
  --grey: #C8C8C8;
  --light-grey: #F4F4F4;
  --lighter-grey: #F9F9F9;
  --dark-green: #A27C28;
}

* {
  font-family: var(--raleway);
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
}

/* body {
  display: flex;
  flex-flow: column;
} */

a:hover {
  text-decoration: none;
}
</pre></body></html>