:root {
  --font-script: "Great Vibes", cursive;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  --font-condensed: "Open Sans Condensed", sans-serif;
  --font-dosis: "Dosis", sans-serif;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
}

.hero {
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;

  background: url("./bg-thes-precieux.jpg") center / cover no-repeat;
}

.card {
  width: min(480px, 88vw);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  box-sizing: border-box;

  background: rgba(16, 14, 12, 0.73);
  padding: 0;
  border-radius: 12px;

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.title {
  margin: 0;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
}

.line {
  display: block;
}

.site {
  font-size: 50px;
  margin-top: 6px;
}

.soon {
  font-size: 48px;
  margin-top: 6px;
}

.tiny {
  margin: 26px 0 80px;
  font-size: 17px;
  opacity: 0.9;
  font-family: var(--font-condensed);
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;
  font-family: var(--font-dosis);
  font-weight: 600;
  font-size: 20px;

  background: #5699cc;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 3px;
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .title {
    font-size: 46px;
  }

  .site {
    font-size: 40px;
  }

  .soon {
    font-size: 38px;
  }

  .tiny {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 64px;
  }

  .btn {
    font-size: 18px;
  }

  .icon {
    width: 18px;
    height: 18px;
  }
}

