html,
body {
  height: 100%;
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: black;
  color: #f8f9fa;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.logo-and-text {
  margin-bottom: 2rem;
}

.logo img {
  display: block;
  width: 140px;
  margin: 0 auto;
  background-color: #f8f9fa;
  border-radius: 20%;
  padding: 16px;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.store-buttons img {
  height: 50px;
  transition: transform 0.2s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}
