:root {
  --bg-color: #1f2b39;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 10px; /* 1rem = 10px */
  height: 100%;
  min-height: 100vh;
}

body {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  background-color: var(--bg-color);
  color: #ffffff;
  margin: 0;
  padding: 0;
  height: 100%;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 5rem 12rem 1rem 12rem;
}

.content {
  display: flex;
  flex: 1;
  margin-bottom: 4rem;
}

.section {
  flex: 1 0 50%;
}

.section:first-child {
  padding-top: 8rem;
  padding-right: 8rem;
}

.section-cover {
  background-image: url('../images/mobile-app.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title {
  margin: 0 0 4rem 0;
  font-size: 3.4rem;
  text-transform: uppercase;
  line-height: 1;
}

.title-sup {
  font-size: 1.2rem;
}

.subtitle {
  font-weight: 700;
  font-size: 3.4rem;
  margin-bottom: 2rem;
}

.description {
  font-size: 1.8rem;
}

.store-links {
  display: flex;
  align-items: center;
}

.store-links img {
  margin-right: 2rem;
  height: 60px;
}

.info {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 1.6rem;
}

.info-email {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.info-icon {
  margin-right: 1rem;
}

@media screen and (max-width: 992px) {
  .page {
    padding: 2rem;
  }

  .content {
    display: block;
  }

  .section-cover {
    margin: 3rem 3rem;
    height: 50rem;
  }

  .footer {
    height: auto;
    flex-direction: column;
  }

  .title {
    text-align: center;
    margin-bottom: 4rem;
  }

  .subtitle {
    text-align: center;
  }

  .description {
    margin-bottom: 5rem;
  }

  .section:first-child {
    padding-right: 0;
  }

  .store-links {
    justify-content: center;
    flex-direction: column;
  }

  .info {
    margin-bottom: 2rem;
  }
}
