:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Eater", 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;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  background: #030507;
  color: #f2f2f2;
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 25px 15px;

  background-image: url("./images/web.png"), url("./images/web.png"),
    url("./images/web.png"), url("./images/web.png"), url("./images/web.png");
  background-repeat: no-repeat;
  background-position: 15% 12%, /* верхний левый, но не у самого края */ 65% 18%,
    /* ближе к верху, немного справа */ 40% 65%,
    /* ближе к центру, ниже */ 78% 82%; /* нижний правый, но не строго в углу */
}

.section-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #ffe325 17.79%, #68ac00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 4px #7cec21;
  margin-bottom: 25px;
}

@media screen and (min-width: 1438px) {
  .section {
    padding: 55px 72px;
  }

  .section-title {
    font-size: 40px;
    margin-bottom: 48px;
  }
}
