:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #f4f7fb;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #000;
}

main {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

img {
  display: block;
  width: min(78vw, 42rem);
  height: auto;
}

p {
  margin: 0;
  font-size: clamp(1rem, 2.8vw, 1.65rem);
  font-weight: 600;
  letter-spacing: clamp(0.12rem, 0.6vw, 0.35rem);
  line-height: 1.4;
  text-transform: uppercase;
}
