:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --second-family: "JetBrains Mono", sans-serif;
  --third-family: "Anton", sans-serif;
  --white: #efefef;
  --light: #b7b7b7;
  --medium: #363636;
  --dark: #1a1a1a;
  --accent: #b54211;
  --googleplay-buttons-googleplay-blue: #00d7fe;
  --common-section-color: #444;
}

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: var(--light);
  background: var(--dark);
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 48px 16px;
}

.title {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 70px;
  line-height: 130%;
  letter-spacing: 0.16em;
  background: linear-gradient(180deg, #1a1a1a 0%, #363636 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: end;
  margin-bottom: 40px;
}

.sub-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--white);
  margin-bottom: 48px;

  span {
    color: var(--accent);
  }
}

@media screen and (min-width: 1422px) {
  .section {
    padding: 80px;
  }

  .title {
    font-size: 100px;
    margin: 0;
    flex-shrink: 0;
  }

  .sub-title {
    font-size: 32px;
    margin: 0;
  }

  .title-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 100px;
  }
}
