<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset CSS */
/* A minimal CSS reset to ensure consistent styling across browsers */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margins and paddings */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove list styles */
ol,
ul {
  list-style: none;
}

/* Images and objects responsive by default */
img,
picture,
svg,
video,
object,
embed {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles */
article &gt; * + * {
  margin-top: 1em;
}

/* Inherit fonts for form elements */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Normalize a bit more */
a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

/* Remove outline for non-keyboard focus */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Preserve outline for keyboard users */
*:focus-visible {
  outline: 2px solid #4D7B8A;
  outline-offset: 2px;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Remove all default fieldset styling */
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

/* Text selection styling */
::selection {
  background-color: #e8f1ed;
  color: #3A4F41;
}
</pre></body></html>