:root {
  --background: #f4f4f0;
  --blue: #15375f;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--background);
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
}

main {
  min-height: 100svh;
  padding: clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  justify-items: center;
  align-items: center;
}

img {
  grid-row: 2;
  display: block;
  width: min(72vw, 620px);
  height: auto;
  mix-blend-mode: multiply;
}

p {
  grid-row: 3;
  align-self: end;
  margin: 0;
  font-size: clamp(.7rem, 1.4vw, .85rem);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  img { width: min(90vw, 440px); }
}
