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

body {
  background: #fff;
  color: #030213;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.container {
  max-width: 1436px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .container {
    flex-direction: row;
    justify-content: center;
    gap: 10.375rem; /* 166px */
  }
}

.content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  max-width: 708px;
  width: 100%;
}

.logo-heading {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.logo {
  width: 78px;
  height: 24px;
  flex-shrink: 0;
}

.tagline {
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 0.0225rem;
  max-width: 350px;
}

.app-store-btn img {
  display: block;
  height: 40px;
  width: auto;
}

.image-wrap {
  width: 100%;
  max-width: 562px;
  aspect-ratio: 562 / 542;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
