/* Oculta todo o conteúdo da revista */
body > * {
  display: none !important;
}

/* Exibe apenas a mensagem de "Em Construção" */
body::before {
  content: "🚧 Revista em Construção 🚧 \A Em breve você terá acesso à nossa revista.";
  white-space: pre;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  background: #555;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  text-align: center;
}
