:root {
  --teal: #18454b;
  --cream: #b9bdb0;
}

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

html, body {
  height: 100%;
}

body {
  background-color: var(--teal);
  color: var(--cream);
  font-family: "Jost", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.content {
  text-align: center;
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Logo ---------- */

.logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 25px;
}

@media (min-width: 480px) {
  .logo {
    width: 544px;
    margin-bottom: 65px;
  }
}

/* ---------- Tagline ---------- */

.tagline {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .78rem;
  color: var(--cream);
  margin-bottom: 1.75rem;
}

@media (min-width: 480px) {
  .tagline {
    font-size: .95rem;
    letter-spacing: .3em;
    margin-bottom: 3rem;
  }
}

/* ---------- Label ---------- */

.label {
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .72rem;
  color: var(--cream);
  margin-bottom: .3rem;
}

@media (min-width: 480px) {
  .label {
    font-size: .8rem;
  }
}

/* ---------- Email ---------- */

.email a {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--cream);
  text-decoration: none;
  transition: opacity .2s ease;
}

@media (min-width: 480px) {
  .email a {
    font-size: .8rem;
    letter-spacing: .25em;
  }
}

.email a:hover {
  opacity: .7;
}
