body {
  background-color: #e4f3e9;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
}

a {
  transition: all 0.2s;
  color: rgba(87, 26, 255, 1);
  text-decoration: none;
}

a:hover {
  transition-duration: 0s;
  color: #4501b1;
}

.create-btn {
  background-color: rgba(87, 26, 255, 1);
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.create-btn:hover {
  background-color: #4501b1;
  color: white;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
}

.logo {
  margin: 0.5rem;
}

.signup-buttons {
  margin-right: 0.5rem;
}

.hero {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  text-align: center;
}

.beta {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #501EF5;
  background: rgba(80, 30, 245, 0.20);
  position: relative;
  bottom: -1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1em;
  font-weight: 900;
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.4em;
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 4rem;
}

.hero-screenshot {
  width: 100%;
  margin: 0 auto;
}

.image-link {
  display: block;
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  font-size: 0;
}

.image-link__background {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(87, 26, 255, 0.9),
    rgba(42, 0, 156, 0.1)
  );
  padding: 0;
  opacity: 0;
  display: flex;
  transition: opacity 0.3s ease;
}

.image-link__label {
  font-size: 2.5rem;
  font-weight: 600;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;;
  text-align: center;
  margin-top: 7rem;
  z-index: 100;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-link:hover .image-link__background {
  opacity: 1;
}

.image-link:hover .image-link__label {
  opacity: 1;
}

.pricing {
  display: block;
  background: white;
  border-radius: 5px;
  padding: 2rem 1rem 3.5rem 1rem;
  max-width: 300px;
  margin: 3rem auto 3rem auto;
  text-align: center;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}

.free-invoices {
  font-size: 1.5rem;
  line-height: 1.4em;
  font-weight: 600;
  margin-bottom: 3px;
}

.no-card {
  opacity: 0.5;
}

.price {
  font-size: 3rem;
  line-height: 1em;
  font-weight: 900;
  margin: 2rem 0 1rem 0;
}

.month {
  font-weight: 600;
  font-size: 1.5rem;
  top: -16px;
  right: -3px;
  position: relative;
}

.content {
  max-width: 800px;
  margin: 3rem auto 3rem auto;
  padding: 0 1rem;
  text-align: left;
}

strong {
  font-weight: 600;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem;
  color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 600px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.footer__links {
  display: flex;
  gap: 1rem;
}

@media screen and (max-width: 400px) {
  .footer__links {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

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

.footer a:hover {
  color: rgba(87, 26, 255, 1);
}