:root {
  --font-family: "Ubuntu", sans-serif;
}

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: #000;
  font-family: var(--font-family);
  background: linear-gradient(180deg, #8eb51d 0%, #d3ee78 100%);
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 30px 20px;
}

.section-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  margin-bottom: 32px;
}

@media screen and (min-width: 1422px) {
  .section {
    padding: 60px;
  }

  .title {
    margin-bottom: 40px;
  }
}
