@import url('/css/_fonts.css');
@import url('/css/_reset.css');
@import url('/css/_global.css');
@import url('/css/_buttons.css');

/* GLOBAL */
html,
body {
  background-color: #000000;
  background-image: url('/images/home/cur8-background.jpg');
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main h1 {
  font-size: 110px;
  font-weight: 760;
  letter-spacing: -4px;
}

main h2 {
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
}

main .logo {
  width: min(560px, 80%);
  max-width: min(560px, 80%);
  margin-top: 120px;
}

main .tagline {
  font-size: 20px;
  margin-top: 40px;
  color: #171717;
}

main .actions {
  width: calc(100% - 48px);
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin-top: 56px;
  padding: 0 24px;
  gap: 16px;
}

main footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  max-width: 430px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 auto;
}

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

  main h2 {
    font-size: 15px;
  }

  main .logo {
    margin-top: 60px;
  }

  main .actions {
    margin-top: 40px;
  }

  main .tagline {
    font-size: 16px;
    margin-top: 32px;
  }

  main .appstore {
    font-size: 12px;
    margin-top: 32px;
    font-weight: 500;
  }

}
