body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  flex-direction: column;
  background-color: black;
}

.kadd-text {
  font-family: Arial;
  font-weight: bold;
  font-style: italic;
  font-size: 120px;
  color: white;
  transform: translateY(-50px);
}

h2 {
  font-family: Arial;
  color: white;
}
 h3 {
   font-family: Arial;
   color: white;
 }
 
 .redacted-box {
  background: white;
  color: transparent;
  padding: 2px 6px;
  animation: flicker 0.2s infinite;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

.redacted-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1em;
  background: black;
}

.redacted-box::selection {
  background: black;
  color: transparent;
}

