* {
  box-sizing: border-box;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.card-title img {
  width: 50px;
  height: 50px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.store-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
  color: white;
  width: 100%;
  max-width: 300px;
}

.store-button img {
  flex: 1;
  width: 75px;
  height: 50px;
}

.store-button span {
  flex: 2;
  text-align: left;
}

.ios-button {
  background-color: #000;
}

.ios-button:hover {
  background-color: #606060;
}

.android-button {
  background-color: #000;
  /* background-color: #3ddc84; */
}

.android-button:hover {
  background-color: #606060;
}