
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  background: #F0FAF7;
  color: #14322E;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 15px;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow .2s, transform .15s;
}

.btn--primary {
  background: #25C9B0;
  color: #fff;
  box-shadow: 0 6px 22px rgba(37,201,176,.30);
}
.btn--primary:hover {
  box-shadow: 0 10px 32px rgba(37,201,176,.45);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: #0FA68E;
  border: 2px solid #B7EFE5;
}
.btn--outline:hover {
  background: #D9F6EF;
}
