/* @import "/fonts/nunito-sans-v18-latin-ext/nunito.css"; */
/* @import "../fonts/poppins-v23-latin_latin-ext/poppins.css"; */
@import "./root.css";
@import "./document.css";

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;

  a {
    align-items: center;
    display: inline-flex;
    justify-content: center;
  }
}

hgroup {
  text-align: center;
  p {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--color-green-black);
  }
}

h2 {
  line-height: 120%;
}

body:has(.content) {
  justify-content: flex-start;
}

.content {
  width: 80ch;
  max-width: 100%;
  flex-grow: 1;

  p {
    line-height: 140%;
  }
}

footer {
  font-size: 1.125rem;
  width: 100%;
  padding-top: 2rem;
}

strong {
  font-weight: 600;
}

.logo {
  height: 4rem;
  width: auto;
  max-width: 100%;
}

a {
  color: var(--color-accent-dark);

  &:focus-visible,
  &:hover {
    color: var(--color-green2-dark);
  }
}

small {
  font-size: 0.875rem;
}

.offscreen {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.flex-row {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.gap-1 {
  gap: 1rem !important;
}

hr {
  height: 1px;
  width: 100%;
  border: none;
  border-top: 1px solid var(--color-border-light);
}
