/* ===== Cinephage Diaries 1997-Style CSS ===== */

body {
  background: url(Images/IMG_0231.jpeg) repeat;
  background-color: black;
  font-family: "Courier New", monospace;
  color: #00FF00;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Main readable content block */
.main-content {
  background-color: rgba(0, 0, 0, 0.75); /* translucent black */
  padding: 30px;
  max-width: 800px;
  margin: 50px auto;
  border: 2px dashed #FF00FF;
  box-shadow: 0 0 12px #FF00FF;
}

/* Headings */
h1, h2 {
  color: #39ff14;
  text-shadow: 0 0 5px #FF00FF, 0 0 10px #FF00FF;
  margin-top: 0;
}

/* Paragraphs & Lists */
p, li {
  color: #00FF00;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 2px 2px 6px black;
  margin: 10px 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

/* Links */
a {
  color: cyan;
  text-decoration: underline;
  text-shadow: 1px 1px 4px black;
  transition: color 0.2s ease;
}

a:hover {
  color: magenta;
  background-color: black;
  padding: 2px 4px;
  border-radius: 4px;
}

/* Blink tag (vintage style) */
blink {
  color: red;
  font-weight: bold;
  animation: blink 1s steps(2, start) infinite;
}

/* Blink keyframes */
@keyframes blink {
  to {
    visibility: hidden;
  }
}

/* Make marquee text not clip */
marquee {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  margin-bottom: 20px;
}