/* Global CSS */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap");

* {
  padding-top: 0px;
  padding-bottom: 0px;

  --bg-color: #111;
  --body-text-color: #fff;
  --footer-text-color: #666666;
  --footer-link-color: #333333;

  font-family: "Inter", "Inter Placeholder", sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--body-text-color);
}

#footer-mobile {
  display: block;
}
#footer-desktop {
  display: none;
}

/* Fonts */
h1 {
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 30.8px;
}

h3 {
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 28px;
}

p {
  font-weight: 500;
}

/* Header */

header {
  padding: 30px;
  height: 32px;
}

.header-logo {
  height: inherit;
}

/* Main */

main {
  display: flex;
  flex-direction: column;
  row-gap: 20px;

  padding: 0px 50px;

  align-items: center;
  text-align: center;
}

.banner-logo {
  height: 80px;
  width: auto;
}

.banner-title {
  display: none;
  font-family: "avenirheavy";
}

.banner-subtitle {
  font-family: "avenirroman";
}

.banner-title-mobile {
  display: block;
  font-family: "avenirheavy";
}

/* Footer */

footer {
  padding: 30px;

  display: flex;
  flex-direction: row;

  justify-content: space-between;
}

footer ul {
  list-style-type: none;
  display: flex;
  text-align: right;

  padding: 0px;
  margin: 0px;

  column-gap: 15px;
}

footer li {
  margin-block: unset;
  padding-inline: unset;
  margin-inline: unset;
}

footer a {
  color: var(--footer-link-color);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

#copyright {
  color: var(--footer-text-color);
}

.app-store-badge {
  height: 80px;
  width: auto;
  margin: 10px;
}

/* Breakpoints */

@media screen and (max-width: 768px) {
  h1 {
    font-size: 30px;
  }

  h3 {
    font-size: 16px;
    line-height: 24px;
  }

  p {
    font-size: 14px;
  }

  main {
    min-height: 480px;
  }
}

@media screen and (min-width: 810px) {
  header {
    padding: 30px 50px;
    height: 32px;
  }

  footer {
    padding: 30px 50px;
  }

  .banner-logo {
    height: 150px !important;
    width: auto;
    margin-top: 60px;
    margin-bottom: 30px;
  }

  .banner-title {
    display: block;
  }

  .banner-title-mobile {
    display: none;
  }

  #footer-mobile {
    display: none;
  }
  #footer-desktop {
    display: block;
  }
}

@media screen and (min-width: 1000px) {
  body {
    max-width: 1000px;
    margin: auto;
  }
}

@media screen and (min-width: 769px) and (max-width: 1400px) {
  h1 {
    font-size: 42px;
    line-height: 54.6px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }

  main {
    min-height: 400px;
  }
}

@media screen and (min-width: 1401px) {
  h1 {
    font-size: 42px;
    line-height: 54.6px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }

  main {
    min-height: 527px;
    justify-content: center;
  }
}

@media screen and (max-width: 685px) {
  .app-store-badge {
    height: auto;
    width: 45%;
  }
}
