/* 90s Web Look + Idol Theme */
body {
  background-color: black;
  background-image: url('bg-stars.gif'); /* Cute tiled star background */
  background-repeat: repeat;
  color: #fefefe;
  font-family: "Comic Sans MS", "MS Gothic", cursive;
  font-size: 16px;
  cursor: url('glitter-cursor.cur'), auto;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  width: 750px;
  margin: auto;
  padding: 20px;
  border: 3px double pink;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Headings */
h1 {
  color: hotpink;
  text-align: center;
  text-shadow: 0px 0px 5px white;
  font-size: 32px;
}

/* Images */
img.idol-pic {
  display: block;
  margin: 10px auto;
  width: 300px;
  border: 2px dashed pink;
  box-shadow: 0 0 10px hotpink;
}

/* Navigation */
nav {
  text-align: center;
  margin: 15px 0;
}

nav a {
  color: hotpink;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
  color: white;
}

/* Scrolling text */
marquee {
  font-size: 18px;
  color: pink;
  margin-top: 20px;
}

/* Links */
a {
  color: #ffaaff;
}

a:hover {
  color: red;
}

/* Diary or Blog styling */
.diary-entry {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid hotpink;
  padding: 10px;
  margin: 10px 0;
  font-style: italic;
}

/* Optional Glitchy Text */
.glitch {
  color: red;
  font-family: monospace;
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0%   { text-shadow: 1px 0 red, -1px 0 cyan; }
  25%  { text-shadow: 2px -1px blue, -2px 1px magenta; }
  50%  { text-shadow: -1px 1px red, 1px -1px lime; }
  75%  { text-shadow: 3px 0 magenta, -3px 0 yellow; }
  100% { text-shadow: 1px 0 red, -1px 0 cyan; }
}
