:root {
  --font-family: "Plus Jakarta Sans", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --third-family: "Nunito", sans-serif;
  --ffac00: #ffd900;
}

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: #fff;
  background: linear-gradient(180deg, #420f7d 0%, #2f0262 100%);
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 68px 20px;
}

.title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 44px;
  line-height: 118%;
  text-align: center;
  color: var(--ffac00);
  margin-bottom: 40px;
}

.text {
  font-family: var(--font-family);
  font-weight: 200;
  font-size: 18px;
  line-height: 156%;
  color: #fff;
  margin-bottom: 20px;

  span {
    font-weight: 700;
  }
}

@media screen and (min-width: 1422px) {
  .section {
    padding: 100px;
  }

  .title {
    font-size: 56px;
    margin-bottom: 60px;
  }

  .text {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
