/* Y2K PASTEL BOXES */

.y2k-box {
  border: 2px dotted #ff99cc;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  box-shadow: 0 0 8px #ffc4e1;
  font-family: 'Gloria Hallelujah', 'Comic Neue', 'Courier New', monospace;
  transition: all 0.3s ease;
}

/* HOVER EFFECT (sparkle pop glow) */
.y2k-box:hover {
  box-shadow: 0 0 15px #ff7ecb, 0 0 30px #ffc9e3;
  transform: scale(1.01);
  border-color: #ffb8dc;
}

/* PINK LINK GLOW */
a {
  color: #ff85c1;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-shadow: 0 0 5px #ffd6eb;
  color: #ff56b0;
}

/* PINK CURSOR & SMOOTH FONTS */
body {
  background: linear-gradient(to bottom right, #ffd6f9, #d3b0f7);
  font-family: 'Comic Neue', 'Courier New', monospace;
  color: #4a004f;
  cursor: url('https://cur.cursors-4u.net/nature/nat-11/nat1012.cur'), auto;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  text-align: center;
}

/* HEADERS */
h1, h2 {
  font-family: 'Pixelify Sans', sans-serif;
  color: #ff45b2;
  text-shadow: 1px 1px #ffe1f7;
}

h2 {
  margin-top: 30px;
}

/* Make sure images don't overflow the box */
img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}


