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

body {
  min-height: 100vh;
  background-color: #fce8f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
}

.logo {
  width: min(360px, 80vw);
  height: auto;
}

footer {
  width: 100%;
  max-width: 480px;
  padding: 1rem 1.5rem calc(2.5rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  height: 40px;
  width: auto;
}

.badge--play {
  height: 60px;
  margin: -10px 0;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-icons a {
  color: #1a1a1a;
  display: flex;
  transition: opacity 0.15s ease;
}

.social-icons a:hover {
  opacity: 0.6;
}

.social-icons svg {
  width: 28px;
  height: 28px;
}
