/* GLOBAL */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --brand-green: #7E956F;
}

/* RESET */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f8f7f5;
  color: #555;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */

h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-align: center;
  color: #1c1c1c;
  margin-bottom: 30px;
}

/* UTILITIES */

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* LINKS / BUTTON TRANSITIONS */

a, button {
  transition: color 0.18s, background 0.20s, box-shadow 0.22s;
}

::selection {
  background: #f3eee9;
}