/* star background */
body {
  background-color: #F5673B;
  color: #ffffff;
  font-family: "Comic Sans MS", "Times New Roman", sans-serif;
  text-align: center;
}

/* Cool center text */
h1 {
  color: #ff0000; /* Rojo fuego como tu avatar */
  text-shadow: 2px 2px #ffff00; /* Sombra amarilla retro */
  font-size: 2.5rem;
}

h2 {
  color: #ffa500; /* Naranja */
}

/* blincking me!! stuff */
.parpado {
  color: #ff3333;
  font-size: 1.5rem;
  animation: blinker 0.8s linear infinite;
}

@keyframes blinker {
  50% { opacity: 0; }
}

/* moving text bar!!!!! */
marquee {
  background-color: #ff0000;
  color: black;
  font-weight: bold;
  padding: 5px;
  font-size: 1.2rem;
  border: 2px dashed #ffff00;
}
