*, *:before, *:after {
  margin: 0;
  padding: 0;
  border: 0;
}

html, body {
  display: block;
  max-width: 100vw;
  min-height: 100vh;
}

body {
  overflow: hidden;
  position: relative;
  background-color: black;
  font-family: "Denk One", Arial, sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.2em;
  color: #f0f0f0;
  z-index: 2;
}

/* A1 logo styling */
#logo {
  position: absolute;
  top: 70px;           /* same vertical offset as before */
  left: 50%;           /* center horizontally */
  transform: translateX(-50%);
  height: 50vh;        /* same as background-size: 50vh */
  width: auto;         /* maintain aspect ratio */
  z-index: 3;
}

#stageElement {
  display: inherit;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}