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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #e4f2fd;
}

.page {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vmin, 2rem);
}

.logo {
  width: clamp(8.75rem, 22vmin, 16.25rem);
  height: auto;
}

.meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(1.5rem, 6vmin, 3rem));
  text-align: center;
  font-size: clamp(0.8125rem, 2.2vmin, 1.0625rem);
  font-weight: 400;
  color: #a9b7c2;
  letter-spacing: 0.02em;
  padding: 0 1rem;
}
