body {
  margin: 0;
  overflow: hidden;
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Newsreader", serif;
  background: #fdfdfd;
}
.container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container-in-container {
  width: 100%;
  height: 100%;
  max-height: 730px;
  position: fixed;
  top: 0;
  left: 0;
  transform: scale(0.8);
}
.container > div {
  margin: auto;
}
canvas {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
video {
  display: none;
  /* position: fixed;
  top: 0%; */
}
.color-preview {
  z-index: 1;
  position: fixed;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100rem;
}
.header-text {
  position: fixed;
  top: 0;
  margin: auto;
  text-align: center;
  font-size: 1.2rem;
}
.header-text.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.text-copied {
  margin-bottom: 0;
}
.color-code-text {
  margin-top: 0.3rem;
}

.bound {
  animation: bound-anim 0.6s ease-in forwards;
}

@keyframes bound-anim {
  0% {
    top: 0;
    left: 0;
  }
  50% {
    left: 30%;
    top: 25%;
  }
  99% {
    left: 130%;
    top: -10%;
    opacity: 1;
  }
  100% {
    left: 1350%;
    top: -15%;
    opacity: 0;
  }
}
