html, body {
  padding: 0;
  margin: 0
}

hr{
  color: #000;
}

body{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: column;
}

.image {
  width: 120px;
}

.inner-wick {
  margin: 0 auto;
  position: absolute;
  bottom: 0;
}

.inner-wick[state="off"] {
  background-color: black;
  width: 100%;
  height: 12px;
}

.wick {
  margin: 0 auto;
  width: 5px;
  height: 18px;
  position:relative;
}

@keyframes flicker {
  from {background-color: orange; height: 18px}
  to {background-color: red; height: 12px}
}


.inner-wick[state="on"] {
  width: 8px;
  height: 18px;
  border-radius: 40% 40% 30% 30% / 70% 70% 40% 40%;
  background-color: orange;
  opacity: 0.33;
  animation-name: flicker;
  animation-duration: 0.6s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

button {
  letter-spacing: 0.1em;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  line-height: 45px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  color: #FFF;
  border: 4px solid #000;
  border-radius: 15px;
  box-shadow:0px 0px 0px 1px #000 inset;
  background-color: #000;
  overflow: hidden;
  position: relative;

}

#candle {
  margin: 0 auto;
  width: 50px;
  height: 100px;
  background-color: #bccde6;
}

#breath{
  text-align: center;
}
