* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: #000000;
}

.logo-stage {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.plait-logo {
  display: block;
  width: min(76vw, 520px);
  height: auto;
  transform-origin: center;
  animation: plait-logo-pulse 2s ease-in-out infinite;
}

@keyframes plait-logo-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .plait-logo {
    animation: none;
  }
}
