body {
  background-color: black;
  color: gold;
  font-family: Arial;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 8px outset white;
  border: 8px inset grey;
  border: 12px ridge white;
  background-color: black;
  text-align: center;
  max-width: 1280px;
}

/* unvisited link */
a:link {
  color: gold;
}

/* visited link */
a:visited {
  color: orange;
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: yellow;
}
