:root {
  --font-family: "Nunito", sans-serif;
  --second-family: "Fredoka", 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: linear-gradient(180deg, #011046 0%, #0227ac 100%);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 64px 20px;
}

.section-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 44px;
  line-height: 127%;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}

.section-sub-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

@media screen and (min-width: 1427px) {
  .section {
    padding: 96px 88px;
  }

  .section-title {
    font-size: 56px;
    margin-bottom: 32px;
  }

  .section-sub-title {
    font-size: 20px;
    margin-bottom: 60px;
  }
}
