/* 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." */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
  background: linear-gradient(180deg, #ff77ff, #6b00ff);
  color: #ffffff;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid #00ffff;
  box-shadow: 0 0 25px #ff00ff;
}

.glitch {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: normal;
  font-size: 64px;
  position: relative;
  color: #ffffff;
  text-shadow: 
    2px 2px #ff00ff,
    -2px -2px #00ffff;
}

.subtitle {
  font-size: 24px;
  color: #00ffff;
  letter-spacing: 4px;
  margin-bottom: 30px;
}


/* Links */
a {
  color: #ffccff;
  text-decoration: none;
}

a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

/* Imagen */
.main-img {
  width: 200px;
  margin: 20px 0;
  filter: saturate(150%) contrast(120%);
}

/* Lista */
ul {
  list-style: none;
  padding: 0;
}

li {
  font-size: 22px;
  margin: 10px 0;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 16px;
  color: #ffccff;
}

/* Scrollbar vaporwave (solo algunos navegadores) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #2b0033;
}

::-webkit-scrollbar-thumb {
  background: #ff00ff;
}