* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lexend Deca", system-ui, -apple-system, sans-serif;
}

img {
  width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  color: var(--text);
  line-height: 1.6;
  width: 100%;
  flex-direction: column;

  --purple: #a878bb;
}

header {
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
  padding-bottom: 64px;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
  color: black;
  background-color: #00000011;
}

footer a {
  color: #00000088;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #000000;
}

p {
  /* color: black; */
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.3rem;
  font-weight: 300;
  color: #333;
  padding: 32px;
  text-align: center;
}

.tagline {
  font-size: 1.5rem;
}

h1 {
  font-size: 4rem;
  font-weight: bold;
  color: black;
  line-height: 4rem;
  padding-bottom: 32px;
}

h2 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 16px;
  text-align: center;
}

img {
  max-width: 400px;
}



.subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 48px;
}

.app-link {
  background-color: var(--purple);
  color: white;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 2px 2px 8px -2px rgba(0, 0, 0, 0.5);
  padding: 16px 32px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  margin: 32px 0;
}

.app-link:hover {
  transform: translateY(-2px);
  box-shadow: 2px 4px 12px -2px rgba(0, 0, 0, 0.3);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: black;
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

.icons {
  margin: 24px 0;
  display: flex;
  justify-content: center; /* Center icon horizontally */
  width: 100%; /* Take full width */
}

.icons svg {
  transition: transform 0.3s ease;
}

.block:hover svg {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .tagline {
    font-size: 1.25rem;
  }

  .stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .icons {
    margin: 16px 0; /* Slightly reduced margin on mobile */
  }

  .block {
    padding: 32px 24px; /* Slightly reduced padding on mobile */
  }
}
