:root {
  --font-family: "Albert Sans", sans-serif;
  --second-family: "Playfair Display", sans-serif;
  --third-family: "Inter", sans-serif;
  --d-blue: #212142;
  --blue: #715fc5;
  --l-blue: #aea2e4;
  --biege: #f9f1ed;
  --white: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  color: var(--d-blue);
  background: var(--biege);
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 80px 16px;
}

.section-title {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: -0.02em;
  background: linear-gradient(136deg, #c7556e 0%, #1f6dff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.section-description {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
  color: var(--d-blue);
  margin-bottom: 24px;
}

.image {
  width: 343px;
  margin: 0 auto;
  margin-top: 40px;
}

@media screen and (min-width: 1422px) {
  .section {
    padding: 80px 160px;
  }

  .image {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .section-title {
    font-size: 48px;
  }

  .section-description {
    font-size: 24px;
  }
}
