/*
Sin nombre
Verónica Martínez Byrdziak
*/

/* Fondo */
body {
  font-family: 'Segoe UI', sans-serif;
  background: repeating-conic-gradient(
    from 0deg,
    #ff00cc 0deg 15deg,
    #00ffff 15deg 30deg,
    #ffcc00 30deg 45deg,
    #00ff00 45deg 60deg,
    #ff3300 60deg 75deg,
    #6600ff 75deg 90deg
  );
  background-size: 200px 200px;
  color: #ffffff;
  margin: 0;
  padding: 2em;
  animation: rotar 60s linear infinite;
}

@keyframes rotar {
  from { background-position: 0 0; }
  to { background-position: 10000px 10000px; }
}

/* Contenedor principal */
#contenedor {
  background-color: rgba(0, 0, 0, 0.85);
  border: 4px solid #39ff14;
  box-shadow: 0 0 20px #39ff14, 0 0 40px #00ffff;
  border-radius: 20px;
  padding: 2em;
  max-width: 1100px;
  margin: 0 auto;
}

/* Títulos */
#titulo h1 {
  font-size: 3em;
  text-align: center;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff66cc;
  margin-bottom: 0.3em;
}
#titulo h2 {
  font-size: 1.5em;
  text-align: center;
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
  margin-bottom: 1em;
}

/* Subtítulos */
h3 {
  font-size: 1.6em;
  color: #39ff14;
  text-shadow: 0 0 8px #39ff14;
  border-bottom: 3px dashed #00ffcc;
  margin-top: 2em;
  padding-bottom: 0.3em;
}

/* Párrafos */
p {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1em;
  margin-bottom: 1em;
  border-left: 5px solid #ff00ff;
  border-radius: 10px;
  box-shadow: 0 0 10px #ff00ff;
}

/* Listas */
ul.ul1 li,
ul.ul2 li {
  background-color: rgba(0, 0, 0, 0.6);
  margin: 0.5em 0;
  padding: 0.5em;
  border-left: 5px solid #00ffff;
  border-radius: 5px;
  color: #ffffff;
  box-shadow: 0 0 5px #00ffff;
  list-style: none;
}
/*elima los ? de las listas*/
ul.ul1 li::before,
ul.ul2 li::before {
  content: "";
}

/* Definiciones */
dt {
  color: #ffcc00;
  font-weight: bold;
  margin-top: 1em;
  text-shadow: 0 0 5px #ffcc00;
}
dd {
  margin-left: 1em;
  color: #ffffff;
}

/* Enlaces animados */
a {
  color: #00ffff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover,
a:focus {
  color: #ff00cc;
  background-color: #000;
  padding: 0.2em 0.4em;
  border-radius: 5px;
  outline: 2px solid #ff00cc;
  text-shadow: 0 0 10px #ff00cc;
}

/* Responsive */
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
    padding: 1em;
  }
  #titulo h1 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.2em;
  }
}

/* Ocultar elementos decorativos */
#extraDiv1,
#extraDiv2,
#extraDiv3,
#extraDiv4,
#extraDiv5,
#extraDiv6 {
  display: none;
}


