html, body, h1, h2 {
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
	min-height: 100vh;
	background-color: #0c0a09;
	font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
	color: #fff;
}

main {
  flex: 1;
}

.backdrop {
	position: fixed;
  z-index: -1;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: radial-gradient(
		ellipse 75% 75% at 61.8% 50%,
		rgba(31, 31, 30, 1) 0%,
		rgba(31, 31, 30, 0) 100%
	);
}

.responsive {
  width: 85vw;
  max-width: 1680px;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.row {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
@media (max-width: 734px) {
  .row {
    flex-direction: column;
    gap: 80px;
  }
}

.column {
  display: flex;
  flex-direction: column;
}

.section-header {
  padding: 80px 0 40px 0;
}

.tagline {
  font-weight: 600;
  font-size: 28px;
  margin: 8px 0 0 0;
}
@media (max-width: 1068px) {
  .tagline {
    font-weight: 600;
    font-size: 19px;
    margin: 8px 0 0 0;
  }
}

.section-feature {
  padding: 40px 0;
}

.section-feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artwork {
  margin: 0;
  flex: 1;
  display: flex;
  justify-content: center;
}

.artwork-left {
  order: -1;
}

.artwork-group {
  position: relative;
  max-width: 400px;
  display: flex;
  gap: 1vw;
  align-items: flex-start;
}

.screen-container {
    position: relative;
    max-width: 400px;
    box-sizing: border-box;
    padding: 1.5%;
    border-radius: 14.9% / 7.9%;
    border: 1px solid rgba(198 198 200 / 0.2);
}

.screen-container img {
    object-fit: cover;
    width: 100%;
    display: block;
    border-radius: 14% / 7%;
}

@media (max-width: 1068px) {
  .artwork-group,
  .screen-container {
    max-width: 350px;
  }
}
@media (max-width: 734px) {
  .artwork-group,
  .screen-container {
    max-width: 250px;
  }

  .artwork-left {
    order: unset;
  }
}

.header-title {
  font-weight: 700;
  font-size: 80px;
}

.section-headline {
  font-weight: 600;
  font-size: 48px;
}

@media (max-width: 1068px) {
  .header-title {
    font-size: 64px;
  }
  .section-headline {
    font-size: 40px;
  }
}
@media (max-width: 734px) {
  .header-title {
      font-size: 48px;
  }
  .section-headline {
    font-size: 28px;
  }
}

.paragraph  {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  margin: 1em 0;
}

.section {
  display: flex;
  flex-direction: row;
}

.footer {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  padding: 80px 0 80px 0;
  color: #3C3C43;
  text-align: center;
}

footer .space {
	padding: 0 0.5em;
}

footer a {
	color: #3C3C43;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.row-footer {
  gap: 1em;
  justify-content: center;
}

@media (max-width: 734px) {
  .footer {
    padding: 40px 0 40px 0;
  }
  .row-footer {
    gap: 0.2em;
  }
}

.apple-download-badge {
  margin-top: 80px;
}

.apple-download-badge a {
  display: inline-block;
	text-decoration: none;
	color: #fff;
}

.apple-download-badge img {
	display: block;
	height: 60px;
}

@media (max-width: 734px) {
  .apple-download-badge {
    margin-top: 20px;
  }
}

.pending-review {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}