:root {
  --column-gap: 2rem;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, sans-serif;
  color: #111;
  background: linear-gradient(to bottom, #6b5b95, #d67d79);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #111;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header,
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1rem 0rem;
}

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

.logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid #111;
  background: rgba(255, 255, 255, 0.2);
}

.site-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
}

.site-tagline {
  margin: 0.25rem 0 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  text-transform: lowercase;
}

.site-nav {
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  padding: 0.75rem 0;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  background: rgba(40, 50, 80, 0.75);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-nav a:hover,
.site-nav a:focus {
  background: rgba(40, 50, 80, 0.95);
}

.site-nav a[aria-current="page"] {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.section-heading {
  margin: 2rem 0 1.5rem;
  padding: 0.5rem 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
}

.two-column {
  display: grid;
  gap: var(--column-gap);
  justify-items: center;
}

@media (min-width: 640px) {
  .two-column {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.tab {
  padding-left: 40px;
}

.content-block {
  width: 100%;
  text-align: center;
}

.content-block p {
  margin: 0 0 0rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ul {
  margin: 0;
  padding-left: 1.25rem;
}

.content-block a {
  color: inherit;
}

.content-block a:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.placeholder-image {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  padding: 5px;
  max-width: 383px;
  margin: 0;
}

.placeholder-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.home-image {
  height: 100%;
}

.footer {
  margin: 2rem 0 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}