body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
}

.container {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
  margin: 0 20px;
}

h1 {
  margin-bottom: 30px;
  font-size: 2em;
  color: #333;
}

#desktop-links {
  display: hidden;
}

.store-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.store-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  padding: 15px;
  margin: 10px 0;
  text-decoration: none;
  color: white;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.3s;
}

.store-links a:hover {
  transform: translateY(-3px);
}

.store-links a.google-play {
  background-color: #34a853;
}

.store-links a.google-play:hover {
  background-color: #0b8043;
}

.store-links a.app-store {
  background-color: #007aff;
}

.store-links a.app-store:hover {
  background-color: #005bb5;
}

.store-links i {
  margin-right: 8px;
  font-size: 1.2em;
}

@media (min-width: 600px) {
  .store-links {
    flex-direction: row;
    justify-content: space-around;
  }

  .store-links a {
    margin: 4px;
  }
}
