:root {
  --main-color: #fff7ee;
  --text-color: #4b342b;
  --accent-color-blue: #65b9d6;
  --accent-color-orange: #ffb347;

  --font-family: "Nunito", sans-serif;
  --second-family: "Baloo 2", sans-serif;
  --third-family: "Plus Jakarta Sans", sans-serif;
  --font3: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

dl,
dt,
dd,
figure,
p {
  margin: 0;
}

dt,
dd {
  display: inline;
}

dd::after {
  content: "";
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  color: inherit;
  background-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--text-color);
  background: var(--main-color);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-chf {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-chf {
  width: 375px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
}

.section-subtitle-chf {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 22px;
}

.section-title-chf {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  text-align: center;
  color: var(--accent-color-blue);
  margin-bottom: 24px;
}

@media screen and (min-width: 1440px) {
  .container-chf {
    width: 1440px;
    padding-bottom: 150px;
  }

  .section-subtitle-chf {
    margin-bottom: 24px;
  }

  .section-title-chf {
    margin-bottom: 34px;
  }
}
