* {
  list-style: none;
  padding: 0;
  margin: 0;
}

html, body{
  -webkit-font-smoothing: antialiased;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  /* background-color: #111428;
  color: white; */
  background-color: rgb(240,240,240);
}

main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 2s ease;
}

input {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0); 
}

.slider {
  position: absolute;
  z-index: 0;
  bottom: 0px;
  height: 50px;
  background: transparent;
  opacity: 0;
  /* transform-origin:top; */
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  transform: rotate(270deg);
}

.text {
  position: absolute;
  top: 0px;
  font-size: 1.5rem;
  user-select: none;
  pointer-events: none;
  transition: 0s ease;
  opacity: 1;
}

.text span:focus{
  outline: none;
  border: none;
}

.stick {
  width: 2px;
  height: 550px;
  position: fixed;
  z-index: 2;
  bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0s ease;
  user-select: none;
  pointer-events: none;
}

.stick .base {
  position: absolute;
  bottom: 0;
  height: 100px;
  width: 2px;
  background: black;
  display: none;
}

.stick .incense {
  position: absolute;
  bottom: 0;
  /* bottom: 100px; */
  height: 500px;
  width: 7px;
  /* background: rgb(32, 32, 32); */
  background-color: #3C2D2D;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  transition: 0s ease;
  user-select: auto;
  pointer-events: visible;
}

.stick .incense .burn {
  height: 6px;
  width: 7px;
  background: linear-gradient(to top, rgb(220, 80, 80) 1%, rgb(180, 180, 180));
  transition: opacity 2s ease;
  border-bottom: 1px solid rgb(220, 0, 0);
  opacity: 0;
}

.stick .incense .burn.end {
  background: rgb(180, 180, 180);
  border: none;
}

.smoke {
  position: fixed;
  z-index: 1;
  bottom: 0;
  /* background: rgb(205,205,205); */
  border: 2px solid rgb(160,160,160);
  width: 5px;
  height: 0px;
  filter: blur(5px);
  border-radius: 10px;
  opacity: 0;
  /* transition: 3s ease; */
  user-select: none;
  pointer-events: none;
}

.context {
  position: fixed;
  bottom: 0;
  padding: 1rem;
  transition: 3s ease;
  opacity: 0;
  font-weight: bold;
  font-size: 12px;
}