* {
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  background-color: #f0f0f0;
  margin: 0 !important;
  padding: 0 !important;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 16px 5%;
}

.container {
  display: flex;
  align-items: center;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  max-width: 1400px;
}

.title {
  color: #78716c;
  letter-spacing: 0.1em;
  -webkit-text-stroke-color: #78716c;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.subtitle {
  color: #0c0a09;
  letter-spacing: -0.04em;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Open Sans, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.text {
  color: #78716c;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 32px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.icons {
  display: flex;
  grid-column-gap: 16px;
}

.app-store {
  display: inline-block;
}

.qr-code-cover {
  min-width: 400px;
  max-width: 400px;
  display: flex;
}

.qr-code {
  width: 100%;
  border-radius: 28px;
}

@media (max-width: 991px) {
  .container {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .icons {
    justify-content: center;
  }
  .subtitle {
    font-size: 40px;
  }
  .text {
    font-size: 16px;
  }
  .qr-code-cover {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .qr-code {
    width: 65%;
  }
}
