* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  background: #f7f7f5;
  color: #1c1c1e;
}

/* HEADER */
.header {
  padding: 30px 60px;
  font-size: 14px;
  font-weight: 600;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px 80px;
  max-width: 1400px;
  margin: auto;
}

/* TEXT */
.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 30px;
}

.store-buttons img {
  height: 44px;
  margin-bottom: 30px;
}

.subtitle {
  font-weight: 600;
  margin-bottom: 12px;
}

.description {
  color: #5c5c60;
  font-size: 15px;
  line-height: 1.6;
}

/* IMAGE */
.hero-image img {
  width: 320px;
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
  color: #6e6e73;
}

.footer a {
  color: #6e6e73;
  text-decoration: none;
  margin: 0 6px;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-text h1 {
    font-size: 48px;
  }
}
