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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--background);
  color: var(--background);
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  overflow: hidden;
}

footer {
    padding: 20px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--footer);
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--logo);
  margin-bottom: 0.5rem;
}

.description {
  font-size: 1rem;
  color: var(--subtitle);
  margin-bottom: 2.5rem;
}

.app-store-link img {
  height: 54px;
  transition: opacity 150ms ease;
}
