body {
  background-color: transparent;
  overflow: hidden;
  color: white;
  text-align: center;
  font-family: "Zen Antique", serif;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}

html {
  background-color: #000000;
}

#hidden-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.slide {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paragraph {
  width: 75vw;
  display: none;
  opacity: 0;
}

.paragraph p {
  font-size: clamp(1.1rem, 2vw, 2.5rem);
}

.paragraph:not(:last-child) {
  padding-bottom: 2rem;
}

#slide-separator {
  display: none;
  height: 30vh;
}

#cover-slide {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

#cover-container {
  overflow: hidden;
}

#custom-input {
  font-family: "Courier New", monospace;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 2.5rem);
  color: white;
  cursor: text;
  outline: none;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.2em;
}

#custom-input .input-placeholder {
  color: white;
}

#custom-input .input-text {
  white-space: pre;
}

#custom-input .input-cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background-color: white;
  margin-left: 2px;
  opacity: 0;
}

#custom-input .input-cursor.active {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

#wrong-message {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#wrong-message svg {
  width: clamp(2rem, 4vw, 4rem);
  height: clamp(2rem, 4vw, 4rem);
  fill: white;
}

#cover-img {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%) scale(1.1);
  max-width: 100%;
  min-width: 600px;
  max-height: 63vh;
  width: auto;
  padding-bottom: 3rem;
  filter: blur(15px);
  opacity: 0.4;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

#cover-title {
  font-family: "Almendra", serif;
  opacity: 0;
  font-weight: 800;
  font-size: clamp(2.8rem, 2vw, 5rem);
}

#cover-subtitle {
  opacity: 0;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.5rem);
}

#main-content {
  display: none;
  position: relative;
  z-index: 1;
}
