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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
  background: #fff;
  color: #111;
  min-height: 100vh;
}
a {
  color: #ca0064;
  text-decoration: underline;
}
#content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}

#header {
  padding: 3rem 0;
  width: 100%;
}

.main__hero img {
  border-radius: 0.5rem;
  width: 100%;
}

.main__content {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.main__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ca0064;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.main__subtitle {
  margin: 0.5rem 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

.main__body {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #333;
  p {
    margin-bottom: 1rem;
  }
}

#apps button {
  margin-top: 1rem;
  background-image: linear-gradient(
    45deg,
    #ca006f,
    color(xyz 0.249 0.124 0.197),
    #b10586 25%,
    #8e2098,
    #6030a3 75%,
    #4135a6 87.5%,
    #2b37a6 93.75%,
    #1c38a6,
    #0039a6
  );
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.store_badges {
  margin-top: 3rem;
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
}

.store_badges img {
  height: 40px;
}

#footer {
  background-color: #e3e3e3;
  padding: 1rem;
  text-align: center;
  font-size: 13px;
  color: #3c3c3c;
  margin-top: 4rem;
}

#footer a {
  text-decoration: none;
  color: #3c3c3c;
  margin: 0 2rem;
  &:hover {
    text-decoration: underline;
  }
}

.copyright {
  margin-top: 0.5rem;
}
