/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



/* 🖥️ BASE GENERAL */
body {
  background-color: black;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  font-family: "Courier New", monospace;
  color: #00ffff;
  text-align: center;

  /* cursor personalizado */
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='cyan' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4l16 6-7 2-2 7-7-15z'/%3E%3C/svg%3E") 4 4, auto;
}

body:active {
  cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='magenta' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4l16 6-7 2-2 7-7-15z'/%3E%3C/svg%3E") 4 4, auto;
}


/* 📦 CONTENEDOR PRINCIPAL */
.contenedor {
  width: 800px;
  margin: auto;
  background: #000000;
  border: 4px double hotpink;
  padding: 10px;
  box-shadow: 0 0 15px #00ffff;
}


/* 🧭 MENÚ */
.menu {
  background: #050505;
  padding: 8px;
  margin-bottom: 10px;
  border: 2px dashed #00ffff;
}

.menu a {
  display: inline-block;
  color: #00ffff;
  text-decoration: none;
  margin: 10px;
  padding: 3px;
  border: 1px solid #00ffff;
}

.menu a:hover {
  color: black;
  background: #ff00ff;
  box-shadow: 0 0 5px #ff00ff;
}

a {
  display: inline-block;
  color: #00ffff;
  text-decoration: none;
  margin: 10px;
  padding: 3px;
  border: none;
}

a:hover {
  color: black;
  background: #ff00ff;
  box-shadow: 0 0 5px #ff00ff;
}

.boton-cute {
  display: inline-block;
  padding: 5px 10px;
  background: #111;
  color: #ff00ff;
  border: 2px dotted #00ffff;
  text-decoration: none;
}

.boton-cute:hover {
  background: #ff00ff;
  color: black;
  box-shadow: 0 0 8px #00ffff;
}

.boton-glitch {
  display: inline-block;
  padding: 4px 8px;
  color: #00ffff;
  border: 1px dashed #ff00ff;
  text-decoration: none;
  position: relative;
}

.boton-glitch:hover {
  color: #ff00ff;
  text-shadow: 1px 0 #00ffff, -1px 0 #ff00ff;
}

/* 🧸 CAJAS DE CONTENIDO */
.caja {
  border: 2px dashed hotpink;
  margin: 10px;
  padding: 10px;
  background: #000000;
}

.caja:hover {
  box-shadow: 0 0 10px #ff00ff;
}


/* ✨ TEXTO ESPECIAL */
.glow {
  text-shadow: 0 0 5px #00ffff, 0 0 10px #ff00ff;
}


/* 💿 BLINK NOVENTERO */
.blink {
  animation: blink 1s infinite;
}

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


/* 🎀 TÍTULO GRADIENTE */
.titulo-gradient {
  background: linear-gradient(to right, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}


/* 🖼️ HEADER */
.header-img {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: auto;
}@charset "UTF-8";
/* CSS Document */

