:root {
  color-scheme: dark;
  background-color: rgb(6, 0, 16);
}

.decrypted-text {
  display: inline-block;
  white-space: pre-wrap;
  font-size: 1.5rem;
  font-weight: 600;
  color: #A9FF5B;
  cursor: pointer;
  transition: all 0.3s ease;
}

.decrypted-text:hover {
  color: #fff;
  text-shadow: 0 0 10px #A9FF5B;
}

.decrypted-text .encrypted {
  color: #666;
  font-family: monospace;
}

.decrypted-text .revealed {
  color: #A9FF5B;
  text-shadow: 0 0 5px #A9FF5B;
}
