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

body {
  margin: 0;
  font-family: sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #fff;
}

.site-nav__title {
  font-weight: 700;
}

.site-nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

section {
  padding: 4rem 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

.join__cta {
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #000;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.btn:hover, .btn:focus {
  background: #000;
  color: #fff;
  text-decoration: none;
}

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