:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --second-family: "JetBrains Mono", sans-serif;
  --third-family: "Space Grotesk", sans-serif;
  --steel-gray: #1c1f24;
  --teal: #2ae6cb;
  --graphite: #333842;
  --interface: #fafafa;
  --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(--interface);
  background: var(--steel-gray);
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 48px 16px;
}

.title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 48px;
}

.sub-title {
  font-family: var(--font-family);
  font-weight: 200;
  font-size: 40px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--interface);
  margin-bottom: 40px;
}

.text {
  font-family: var(--second-family);
  font-weight: 100;
  font-size: 16px;
  text-align: right;
  color: var(--interface);
  margin-bottom: 40px;
}

@media screen and (min-width: 1422px) {
  .section {
    padding: 80px;
    position: relative;
  }

  .title {
    margin-bottom: 80px;
  }

  .sub-title {
    font-size: 56px;
    margin: 0;
  }

  .text {
    position: absolute;
    top: 80px;
    right: 80px;
    max-width: 60%;
    margin: 0;
  }
}
