h1 { font-family: Arial, Helvetica, sans-serif; }

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

h1 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 1rem;
}

.container {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  width: 90%;
}

.app-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
  gap: 10px;
}

.android-button {
  background-color: #3ddc84;
  color: #000000;
}

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

.ios-button {
  background-color: #007aff;
  color: white;
}

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

.website-button {
  background-color: #f0f0f0;
  color: #333;
}

.website-button:hover {
  background-color: #e0e0e0;
}

.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}
