/* 🌿 FUNDO XADREZ */
body {
  margin: 0;
  font-family: Verdana, sans-serif;
  color: #5a4a2f;

background-image: url("fundo.jpg");
background-repeat: repeat;
background-size: 800px;

  cursor: url('estrela.png'), auto;
}


/* 🌼 TÍTULO COLAGEM */
.titulo {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.titulo img {
  height: 200px;
  margin: 1px;
  display: inline-block;
  transform: rotate(-5deg);
  transition: 0.2s;
  filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.2));
}

.titulo img:nth-child(even) {
  transform: rotate(5deg);
}

.titulo img:hover {
  transform: scale(1.1) rotate(0deg);
}

.titulo h1 {
  margin: 0;
}

.titulo p {
  margin: 0;
}

/* 📌 MENU */
.menu {
  margin-bottom: 15px;
}

.menu a {
  margin-right: 10px;
  text-decoration: none;
  color: #d4a017;
  font-weight: bold;
}

.menu a:hover {
  color: #556b2f;
  cursor: url('olho.png'), pointer;
}


/* 📜 PAPEL */
.papel {
  background-image: url('papel.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  
  width: 600px;        /* largura da folha */
  height: 840px;       /* altura proporcional (A4) */

  padding: 40px;
  border-radius: 10px;

  margin: 40px auto;   /* centraliza na tela */
  box-shadow: 0 10px 30px;
  transform: rotate(-1deg);
}

.erro {
  text-align: center;
  margin-top: 50px;
}

/* texto principal */
.erro h2 {
  font-family: "Courier New", monospace;
  font-size: 28px;
  letter-spacing: 2px;
}

/* estilo meio “quebrado” */
.glitch {
  font-family: "Courier New", monospace;
  color: red;
  font-weight: bold;
  animation: piscar 1s infinite;
}

/* animação piscando */
@keyframes piscar {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

#digitando {
  white-space: pre-line;
}

/* 🧷 ADESIVOS */
.sticker {
  width: 50px;
  position: absolute;
  transition: 0.2s;
}

.sticker:hover {
  transform: rotate(10deg) scale(1.1);
}


/* 📍 POSIÇÕES (tu pode ajustar depois) */
.sticker1 {
  top: 10px;
  left: 20px;
}

.sticker2 {
  top: 10px;
  right: 20px;
}

.sticker3 {
  bottom: 10px;
  right: 30px;
}