* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000000; /* Black background */
  color: #ffffff; /* White text */
}

.container {
  max-width: 800px; /* Limit width for better readability */
  margin: auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5em;
}

.content {
  margin-bottom: 40px; /* Space between sections */
}

.separator {
  height: 3px; /* Height of the separator */
  background-color: #28a745; /* Green color */
}

.bio h2,
.content h2 {
  font-size: 2em;
}

footer {
  text-align: center;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .content {
      margin-bottom: 10px; /* Reduce space between sections on smaller screens */
  }
}


a{
  color: #778899;
}

a:hover{
  color: #B0C4DE;
}