body {
  margin: 0;
  background: black;
  height: 100vh;
  display: flex;
  justify-content: right;
  align-items: top;
  /* flex-direction: column; */
}

#bgImage, #candleVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#candleVideo {
  opacity: 0;       /* hidden initially */
  z-index: -1;
}

#bgImage {
  z-index: -2;      /* always behind everything */
}

.controls {
  position: relative;
  height: 127px;
  width: 327px;
  z-index: 1;       /* UI stays on top */
  background: white;
  opacity: 15%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.title {
    margin: 0px 0px 15px 0px;
    align-self: center;
}

#startButton {
    position: absolute;
    left: 0px;
    bottom: 0px;
    border: 0px;
    background-color: grey;
    color: white;
    font-size: 21px;
    margin-top: 15px;
    width: 100px;
    height: 29px;
}

.advice {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    opacity: 85%;
}