* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
}

.site-header a {
  display: block;
  width: 100%;
  text-align: center;
}

.site-header img {
  display: block;
  width: min(800px, 100%);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.page-content {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 0.75rem;
}

.feature-grid {
  display: grid;
  margin: 2.5rem auto 0;
  gap: 1rem;
  width: fit-content;
  justify-items: center;
}

.two-column-grid {
  grid-template-columns: repeat(1, minmax(0, 400px));
}

.feature-image {
  width: min(400px, 100%);
  height: auto;
  display: block;
}

.section-header {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

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

.contact-line {
  margin-top: 1rem;
  text-align: center;
}

.content-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.content-list li {
  margin: 0.25rem 0;
}

.single-feature-wrap {
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}

.single-feature-image {
  width: min(560px, 100%);
  height: auto;
  display: block;
}

.muted-link {
  color: white;
  text-decoration: none;
}

.muted-link:hover,
.muted-link:focus-visible {
  color: #9ca3af;
}

.site-footer {
  margin-top: 5rem;
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.4;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .two-column-grid {
    grid-template-columns: repeat(2, minmax(0, 400px));
    gap: 150px
  }

  .page-content {
    padding: 0 0.25rem;
  }
}