/* General styling */
body {
  margin: 0;
  font-family: "VT323", monospace;
  background-color: #030B16;  /* Major background color */
  color: #E0E0E0;             /* Light grey text for readability */
  text-align: center;
}

header {
  padding: 1.5rem;
  background-color: #030B16;  /* Consistent with overall theme */
}

.logo {
  width: 275px;
  margin-bottom: -2.85rem;
}

h2 {
  font-size: 1.2rem;
  color: #B6DCF2;  /* Softer light-blue shade for sub-headings */
  font-weight: 400;
  margin-top: 0rem;
}

.about,
.topics,
.contact {
  background-color: #051726;  /* Slightly lighter shade for section backgrounds */
  padding: 1rem;
  margin: 2rem auto;
  border-radius: 8px;
  max-width: 800px;
}

.about p,
.contact p {
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.about h3,
.topics h3,
.contact h3 {
  color: #049DD6;  /* Match major heading color for smaller section headings */
  margin-bottom: 1rem;
}

.topics ul {
  list-style: none;
  padding: 0;
}

.topics li {
  margin: 0.5rem 0;
}

a {
  color: #94DCF5;  /* Match major heading color for links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  padding: 1rem;
  background-color: #051726;  /* Slightly darker shade for footer for subtle contrast */
  font-size: 0.8rem;
  color: #A0C4DE;
}
