:root {
  --background: #ffffff;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(70vh, 600px);
}

.page__logo {
  max-width: min(480px, 65vw);
  width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow));
}

@media (max-width: 480px) {
  body {
    padding: 1.5rem;
  }

  .page__logo {
    max-width: 85vw;
  }
}

