:root {
  --font-family: "Inter", 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: #fff;
  background: #000;
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 45px 10px;
}

.section-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 32px;
  line-height: 187%;
  text-align: center;
  background: linear-gradient(90deg, #dbaeff 0%, #fffdff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  margin-bottom: 10px;
}

.section-description {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 18px;
  line-height: 111%;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

@media screen and (min-width: 1421px) {
  .section {
    padding: 80px;
  }

  .section-title {
    font-size: 38px;
    margin-bottom: 16px;
  }

  .section-description {
    font-size: 24px;
    margin-bottom: 60px;
  }
}
