nav.site-navigation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
}
nav.site-navigation a {
  color: #44a903;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}
nav.site-navigation a:hover, nav.site-navigation a:focus {
  color: #ff9900;
}

img.header-image {
  width: 150px;
  height: auto;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.flex {
  display: flex;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-end-safe {
  align-items: safe flex-end;
}

.items-center {
  align-items: center;
}

.items-center-safe {
  align-items: safe center;
}

.items-baseline {
  align-items: baseline;
}

.items-baseline-last {
  align-items: last baseline;
}

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-end-safe {
  justify-content: safe flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-center-safe {
  justify-content: safe center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-stretch {
  justify-content: stretch;
}

.justify-baseline {
  justify-content: baseline;
}

.justify-normal {
  justify-content: normal;
}

html {
  box-sizing: border-box;
  font-size: 1rem;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #222;
  background: #f5f5f5;
  line-height: 1.6;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 100vh;
}

p {
  word-break: break-word;
  overflow-wrap: anywhere;
}

a {
  color: #44a903;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ff9900;
  outline: none;
}

nav {
  grid-row: 2;
}

header {
  grid-row: 1;
  padding: 1.5rem 0;
  text-align: center;
}

main {
  grid-row: 3;
  padding: 0 1.5rem;
}
main h1 {
  text-align: center;
}

footer {
  grid-row: 4;
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  font-size: 0.95rem;
}

@media (min-width: 60em) {
  main {
    margin: 0 auto;
    max-width: 1200px;
  }
  header,
  footer {
    padding: 1rem 0;
  }
}
a:focus-visible {
  outline: 2px solid #ff9900;
  outline-offset: 2px;
}

img.round {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

/*# sourceMappingURL=main.css.map */