/* General Body Styling */
body {
  background-color: #1a001a;
  background-image: url('blackest.png');
  background-size: 200px;/* Optional: dark background texture */
  color: #ffe6f0; /* pale pink text */
  font-family: 'Georgia', serif;
  text-align: center;
  padding: 20px;
  line-height: 1.7;
  background-attachment: fixed;
}

/* Homepage Font Override */
.homepage {
  font-family: 'Georgia', serif;
}

/* Main Heading */
h1 {
  font-size: 3em;
  color: #fac5d6; /* soft pink */
  text-shadow: 2px 2px 6px #33001a, -1px -1px 2px #ff66a3;
  margin-bottom: 30px;
}

/* Subheadings */
h2, h3 {
  font-size: 1.7em;
  color: #fac5d6;
  text-shadow: 2px 2px 3px #660033;
  margin-bottom: 15px;
}

/* Paragraph Styling */
p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 15px auto;
  text-align: left;
  color: #000000;
}

/* Content Box */
.content-box {
  background-color: rgba(250, 197, 214, 0.50); /* translucent pastel pink */
  border: 2px dashed #f79cd1; /* cute-pink border with a scratchy feel */
  padding: 15px;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 0 12px #660033, inset 0 0 8px #99004d;
  text-align: left;
}

/* Link Styling */
a {
  display: inline-block;
  text-align: center;
  font-size: 1.0em;
  color: #db2e82;
  text-decoration: none;
  border-bottom: 2px dotted #3d0114;
 
  padding: 5px;
  margin: 15px;
  font-weight: bold;
  transition: 0.3s;
}

a:hover {
  color: #ff0066;
  border-bottom: 2px solid #ff0066;
  

  text-shadow: 0 0 5px #ff3399;
}

/* Image Styling */
img {
  border: 3px solid #ff99cc;
  border-radius: 10px;
  box-shadow: 0 0 30px #660033;
  margin-top: 0px;
  max-width: 90%;
}

/* Optional: Cute spooky emoji */
::selection {
  background: #ffccf2;
  color: #33001a;
}
