* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  margin: 0;
  min-height: 100svh;
  place-items: center;
  background: #000;
}

.logo-page {
  display: grid;
  width: 100%;
  min-height: 100svh;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
  background: #000;
}

.brand-lockup {
  display: grid;
  justify-items: center;
  gap: clamp(6px, 1.5vw, 14px);
}

.logo {
  display: block;
  width: min(72vw, 500px);
  max-height: min(74svh, 700px);
  object-fit: contain;
}

.tagline {
  margin: 0;
  color: #f6d36f;
  font-family:
    ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
