* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  color: #ffffff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.logo img {
  width: 180px;
  height: auto;
  display: block;
}

.store-btn {
  display: inline-block;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.1s;
}

.store-btn:hover {
  opacity: 0.85;
}

.store-btn:active {
  transform: scale(0.97);
}

.store-btn img {
  height: 54px;
  width: auto;
  display: block;
}

.store-badges {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
