/* Swup */
main {
  height: 100vh;
  overflow-y: scroll;
}

html,
body {
  font: Poppins, sans-serif;
}

/* Title */
#title-container {
  display: flex;
  flex-direction: column;
  align-content: center;
  margin-top: clamp(10%, 100px, 280px);
  margin-bottom: clamp(10%, 60px, 240px);
}

#landing-title {
  margin-bottom: 20px;
  color: var(--black);
}

.title {
  max-width: 880px;
  align-self: center;
  text-align: center;
  font-weight: 400;
  padding-left: 40px;
  padding-right: 40px;
}

#subtitle {
  align-self: center;
  max-width: 580px;
  text-align: center;
  margin-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
  color: #444;
  line-height: 1.5;
}

#main-login-button-link:hover {
  text-decoration: none;
}

#main-login-button {
  padding: 12px 24px;
  border-radius: 12px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

#nav-login-button {
  padding: 8px 16px;
}

.marketing-primary-button {
  background-color: black !important;
  color: white !important;
}

.marketing-primary-button:hover {
  background-color: #3c67e3 !important;
}

[placeholder]:empty::before {
  content: attr(placeholder);
  color: #aaa;
}

[placeholder]:empty:focus::before {
  content: "";
}
