* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  place-items: center;
  padding: 20px 12px 34px;
  font-family: "Courier New", Courier, monospace;
}

main {
  width: min(100%, 1180px);
  text-align: center;
}

.banner {
  display: block;
  width: min(100%, 920px);
  height: auto;
  margin: 0 auto;
}

h1 {
  margin: 2px auto 18px;
  color: #ff6a00;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.6rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-transform: lowercase;
  -webkit-text-stroke: 1px #351600;
  paint-order: stroke fill;
  text-shadow: 2px 3px 0 #3a1800;
}

.construction-scene {
  display: block;
  width: min(100%, 1100px);
  height: auto;
  margin: 0 auto;
  image-rendering: pixelated;
}

@media (max-width: 600px) {
  body {
    padding: 10px 6px 22px;
  }

  .banner {
    width: 100%;
  }

  h1 {
    margin-top: 5px;
    -webkit-text-stroke-width: 0.5px;
    text-shadow: 1px 2px 0 #3a1800;
  }
}
