:root {
  --bg-color: rgba(255, 255, 255, 1);

  --header-bg-color: rgb(255, 255, 255);
  --header-color: rgba(26, 26, 26, 1);

  --color: rgba(60, 50, 30, 1);
  --content-bg-color: rgba(30, 30, 30, 1);
  --content-title-color: rgba(255, 255, 255, 0.85);
  --content-color: rgba(255, 255, 255, 0.6);

  --main-width: 900px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'SF Pro Text', 'SF Pro Icons', 'AOS Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: var(--bg-color);
  font-size: 14px;
  font-style: normal;
  font-synthesis: none;
  font-weight: normal;
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-synthesis: none;
  font-weight: 700;
  line-height: 1.3em;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.25em;
}

.banner {
  font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-synthesis: none;
  font-weight: normal;
  line-height: 1.5em;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 1.5em;
}

.header {
  color: var(--header-color);
  text-align: center;
  background-color: var(--header-bg-color);
}

.menu {
  padding: 1em 0;
  text-align: right;
}

.menu a {
  color: rgba(26, 26, 26, 0.75);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
}

.menu a:hover {
  color: rgba(26, 26, 26, 1);
}

.header-image {
  overflow: hidden;
  position: relative;
}

@media (max-width: 849px) {
  .header-image img {
    width: 90vw;
  }
}

@media screen and (min-width: 850px) {
  .header-image img {
    width: 800px;
  }
}

.header,
.content,
.row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.content-wrap {
  width: calc(100% - 3em);
  max-width: var(--main-width);
  margin: 0 1.5em;
}

.pre-app-store-links {
  background-color: rgb(253, 218, 18);
  font-weight: 600;
}

.pre-app-store-links a {
  color: var(--color);
  text-decoration-color: rgba(60, 50, 30, 0.25);
  text-decoration-thickness: 2px;
}

.pre-app-store-links .content-wrap {
  padding: 20px;
  text-align: center;
}

.app-store-links .content-wrap {
  margin: 20px;
  text-align: center;
}

.features .content-wrap {
  padding-top: 1em;
}

.footer {
  padding-top: 2em;
  padding-bottom: 5em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer .heart path {
  fill: rgb(235, 95, 95);
}

.footer-left {
  margin-right: 1em;
}

.footer-right {
  margin-left: 1em;
  text-align: right;
}

.footer-copyright {
  color: rgba(0, 0, 0, 0.5);
}
