@keyframes hueRotate {
  100% {
    filter: hue-rotate(360deg);
  }
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: "Rubik Mono One", sans-serif;
  background: linear-gradient(45deg, #ff9a9e, #fad0c4, #ffd1ff, #e6fffb);
  animation: hueRotate 6s infinite alternate;
  -webkit-font-smoothing: antialiased;
}

svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 999 !important;
}

.input {
  width: 500px;
  height: 35px;
  position: absolute;
  z-index: 1;
  bottom: 0px;
  font-size: 20px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  font-family: helvetica, sans-serif;
  bottom: 20px;
  background: none;
  border: 1px solid #ddd;
  color: #eee;
  opacity: 0;
}

.text,
.offscreen-text {
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  position: absolute;
  margin: 0;
}

.offscreen-text {
  text-align: center;
  top: -9999px;
}

.text span {
  position: absolute;
}
