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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: #4c535f;
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
    system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.illustration {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100dvh;
  object-fit: contain;
  -webkit-mask-image: radial-gradient(
    ellipse 75% 75% at center,
    black 55%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 75% 75% at center,
    black 55%,
    transparent 100%
  );
}
