/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

.background-gradient {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #e71657, 60%, #ffb0c3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 15px;
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.logo-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 9px 5px 9px;
  display: inline-block;
  margin: 0 auto 20px auto;
}

.logo-card img {
  width: 100px;
  height: 100px;
}

h1 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #333;
}

p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sh-store-link img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.sh-store-link {
  display: inline-block;
  text-align: center;
}

@media (max-width: 768px) {
  .background-gradient {
    align-items: normal;
  }

  .card {
    margin-top: 50px;
    background: none;
    box-shadow: none;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-right: 10px;
    margin-left: 10px;
  }

  h1 {
    font-size: 1.3rem;
    color: #ffffff;
  }

  p {
    font-size: 0.9rem;
    color: #ffffff;
  }

  .sh-store-link img {
    max-width: 200px;
    height: auto;
  }
}
