:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  background: #ffffff;
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
}

.placeholder {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.placeholder h1 {
  font-size: 0;
  line-height: 0;
  margin: 0;
  transform: translateY(14px);
}

.placeholder img {
  display: block;
  height: auto;
  width: min(370px, calc(100vw - 48px));
}

@media (max-width: 480px) {
  .placeholder {
    padding: 16px;
  }

  .placeholder img {
    width: min(296px, calc(100vw - 32px));
  }
}
