/* Ensure no white background is visible */
html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #1A1A1A; /* Fallback for the gradient */
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: radial-gradient(circle, #3e325c, #1A1A1A);
  font-family: "Nunito", "Arial", sans-serif;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700; /* Bold for headings */
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 400; /* Normal for subheadings */
}

.app-icon img {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.app-store-btn {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.app-store-btn img {
  width: 150px;
}

.instagram img {
  width: 28px;
  height: 28px;
}

footer {
  position: fixed;
  bottom: 10px;
  font-size: 1rem;
  color: #ccc;
  text-align: center;
  width: 100%;
}

footer a {
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: none;
}

footer .footer-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
}

footer p {
  margin: 0;
  font-size: 1rem;
}

