:root {
  --font-family: "Nunito", sans-serif;
  --second-family: "Comfortaa", sans-serif;
  --header-light-text-stroke: #fdfcfa;
  --shadow-plitka: #d0cfce;
  --green-grass: #c8ffb5;
  --green-sea: #b1ffe2;
  --yellow-plitka: #fffbb5;
  --orange-plitka: #ffe7ba;
  --blue-plitka: #adeaff;
  --violet-plitka: #bac6ff;
  --lavanda-plitka: #e4bcff;
  --pink-plitka: #ffc6c6;
  --dark-text-stroke: #373737;
  --red-plitka: #ffa8a9;
}

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 {
  font-family: var(--font-family);
  margin: 0 auto;
  background: linear-gradient(180deg, #eeffd9 0%, #aaffe8 52.88%, #c6dcff 100%);
  color: var(--dark-text-stroke);
}

html {
  scroll-behavior: smooth;
}

.title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #313131;
  margin-bottom: 16px;
}

.img {
  width: 172px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.sub-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #313131;
  margin-bottom: 12px;
}

.text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #313131;
  max-width: 870px;
  margin: 0 auto;
}

.section {
  padding: 16px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease-out;
}

.container {
  width: 100%;
  padding: 0 64px;
  margin: 0 auto;
}

@media screen and (min-width: 375px) {
  .container {
    width: 375px;
  }
}

@media screen and (min-width: 768px) {
  .section {
    padding: 32px 0;
  }

  .container {
    width: 768px;
    padding: 0 64px;
  }
}

@media screen and (min-width: 1436px) {
  .section {
    padding: 40px 0;
  }

  .container {
    width: 1436px;
    padding: 0 172px;
  }

  .title {
    font-size: 48px;
  }

  .title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 44px;

    .title,
    .img {
      margin: 0;
    }
  }

  .img {
    width: auto;
  }

  .sub-title {
    font-size: 36px;
    margin-bottom: 44px;
  }

  .text {
    font-size: 24px;
  }
}
