* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica, Arial, Helvetica, sans-serif, sans-serif;
    color: #333;
    background-color: #f4f4f4;
}

html {
  font-size: clamp(4px, 1.8vw, 10px);
}

.bold {
  font-weight: 600;
}

.semi-bold {
  font-weight: 600;
}

.page-wrap {
  max-width: 60rem;   /* this is the magic */
  margin: 0 auto;     /* centres the column */
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 60vh;
  text-align: center;
  gap: 0.8rem;
  margin-top: 4rem;
}


.body-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}



.subnav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

h1 {
  font-size: clamp(5rem, 6vw, 7rem);
  letter-spacing: 0em;
  font-weight: 300;
  line-height: 1.1;
}

.accent {
  color: red;
}
.accent-light {
  color: #303030;
}

h2 {
  font-size: 1.6rem;
  letter-spacing: 6px;
  font-weight: light;
  opacity: 0.7;
  margin-top: 0.8em;
}

h3 { font-size: 2.2rem; font-weight: lighter; }
p  { font-size: 1.8rem; }

a {
    /* color: rgb(0, 0, 0); */
    font-size: 1.8rem;
    text-decoration: none;
}


.container {
    max-width: 1200px;
}

@media (min-width: 900px) {
  .hero {
    gap: 1.2rem;
  }

  h2 {
    margin-top: 1em;
  }

  h3 {
    margin-bottom: 0.8em;
  }
}

.site-footer {
  margin-top: 6rem;
  padding: 2rem 1rem;
  text-align: center;
  opacity: 0.4;
}

.site-footer p {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}



/* * {
  outline: 1px solid red;
} */