body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #f9f9f9;
  color: #333;
}

.container {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

.app-image {
  width: 100%;
  max-width: 300px;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-buttons .button {
  display: inline-block;
  gap: 10px;
  margin: 0 10px;
  padding: 0.75rem 1.5rem;
  background-color: #007aff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.store-buttons .button:hover {
  background-color: #005bb5;
}

@media only screen and (max-width:700px) {
  .store-buttons {
    gap: 10px;
    flex-direction: column;
  }
}