:root{
  --fg: rgb(185, 140, 74);          /* #B98C4A */
  --bg: #000000;
  --muted: rgba(255, 255, 255, 0.55);
  --focus: rgba(185, 140, 74, 0.9);
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html, body{
  height: 100%;
}

body{
  margin: 0;
  padding: 24px;
  background: var(--bg);
  color: var(--fg);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap{
  width: min(720px, 100%);
  text-align: center;
}

img{
  width: min(450px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.powered{
  margin: 0;
  line-height: 1.45;
  font-size: 14px;
  color: var(--muted);
}

.powered a{
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.powered a:hover{
  color: #ffffff;
}

.powered a:focus-visible{
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Screen-reader only utility */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 520px){
  body{ padding: 18px; }
  img{ margin-bottom: 14px; }
  .powered{ font-size: 13px; }
}
