*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #11110F;
  background-color: #F7F7F2;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #D29E8C;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #c17960;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "IBM Plex Serif", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #323030;
  margin-top: 0;
}

h1 {
  font-size: clamp(36px, 5.5vw, 70px);
}

h2 {
  font-size: clamp(24px, 3.5vw, 40px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 30px);
}

.subtitle {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D29E8C;
}

.big-text {
  font-size: clamp(22px, 2.5vw, 30px);
}

.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}