/* Typography */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #2b2b2b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
.btn,
nav,
input,
textarea,
select {
  font-family: "DM Sans", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
  color: #17324d;
}

h1 {
  font-size: clamp(44px, 4.2vw, 64px);
}

h2 {
  font-size: clamp(34px, 3.2vw, 48px);
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 23px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin: 0 0 1.2rem;
}

strong {
  font-weight: 600;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #b89042;
}

::selection {
  background: #b89042;
  color: #ffffff;
}