html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: #e7e7e7;
}

h1,
h2 {
  font-family: "Abril Fatface", serif;
  font-weight: 500;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 36px;
}

section {
  margin-bottom: 100px;
}

section h2 {
  text-align: center;
}

section p {
  margin-top: 50px;
  font-size: 18px;
  text-align: center;
}

section form {
  margin-top: 50px;
  text-align: center;
}

section input {
  padding: 12px 24px;
  border: 2px solid #ffffff;
  border-radius: 24px;
  margin-right: 10px;
  background: transparent;
  width: 250px;
}

section input:focus {
  outline: none;
  box-shadow:
    0 0 24px #b152e0,
    0 0 56px #b152e080;
}

section button {
  padding: 12px 24px;
  border-radius: 24px;
  border: 2px solid #ffffff;
  font-size: 16px;
  font-weight: 500;
  color: #ffffffd9;
  background: #b152e0;
  box-shadow:
    0 0 24px #b152e0,
    0 0 56px #b152e080;
  transition: all 0.2s ease-in-out;
}

footer {
  margin-bottom: 30px;
  text-align: center;
  font-size: 13px;
  color: #000000ad;
}

footer a {
  color: #000000ad;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000000;
  color: #e7e7e7;
  min-height: 100vh;
  padding: 20px;
}

.hero-img img {
  height: 300px;
}

.hero-tagline p {
  font-size: 32px;
}

.hero-btn {
  margin-top: 25px;
}

.hero-btn .hero-cta {
  margin-top: 15px;
  padding: 24px 48px;
  border-radius: 48px;
  border: 2px solid #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #ffffffd9;
  background: #b152e0;
  box-shadow:
    0 0 24px #b152e0,
    0 0 56px #b152e080;
  transition: all 0.2s ease-in-out;
}

.hero-btn .hero-cta:hover,
section button:hover {
  background: #b152e0cc;
  transform: translateY(-3px);
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ig-link a {
  color: #b152e0;
  text-decoration: none;
}

.ig-link a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  h2,
  .hero-tagline p {
    font-size: 28px;
  }

  section {
    padding: 20px;
  }

  section p {
    font-size: 15px;
  }

  section button {
    margin-top: 20px;
  }

  .hero-img img {
    height: 200px;
  }
}
