/* --------------------
   Base button styling
-------------------- */
button {
  position: absolute;
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.7); /* Comment this out when not testing */
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}


* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.Background-Element {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
}