: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;
}

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(360deg, #a40a00 0%, #140000 100%);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 50px 20px;
}

.section-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(90deg, #ff4800 0%, #fe0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px #ff0200;
  margin-bottom: 50px;
}

.section-sub-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
}

@media screen and (min-width: 1432px) {
  .section {
    padding: 50px 100px;
  }

  .section-title {
    font-size: 42px;
    margin-bottom: 32px;
  }

  .section-sub-title {
    font-size: 18px;
    margin-bottom: 91px;
  }
}
