body {
    		font-family: "Times New Roman", Times, serif;
    		font-size: 1rem;
    		line-height: 1.5;
    		text-indent: 2rem;
    		background-color: #000000; /* Black background */
  			color: #0080c0;            /* Default text color (Deep Blue/Teal) */
        margin-bottom: 2rem;
		}
		
img {
  max-inline-size: 100%;
}

/* Unvisited link */
a:link {
  color: #ff0000;            /* Bright Red */
}

/* Visited link */
a:visited {
  color: #808080;            /* Gray */
}

/* This turns a boring line into centered asterisks */
.star-divider {
  border: none;            /* Remove the default gray line */
  text-align: center;      /* Center the content */
  height: auto;
}

.star-divider::after {
  content: "* * *";        /* Put your stars here */
  color: #0080C0;
  letter-spacing: 1rem;    /* This replaces the 'indent.gif' spacing! */
}