:root {
  --soft-charcoal: #2c3a47;
  --deep-sage-green: #3b5e52;
  --misted-seafoam: #a8c5b5;
  --paper-cream: #f5efe0;
  --amber-lantern: #d4924a;

  --font-family: "DM Sans", sans-serif;
  --second-family: "Playfair Display", 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(--soft-charcoal);
  background: var(--paper-cream);
}

html {
  scroll-behavior: smooth;
}

.section-cbk {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 60px;
}

.container-cbk {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 375px;
  padding: 60px 16px 32px;
}

.section-title-cbk {
  width: 100%;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  margin-bottom: 48px;
}

.section-img-cbk {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 343px;
  border-radius: 8px;
}

@media screen and (min-width: 1440px) {
  .section-cbk {
    padding-bottom: 0;
  }

  .container-cbk {
    width: 1440px;
    padding: 80px 160px;
  }

  .section-title-cbk {
    font-size: 48px;
    margin-bottom: 64px;
  }

  .section-img-cbk {
    position: absolute;
    width: 480px;
  }
}
