.title {
    color: #d2a057;
}
body {
  background-color: #171310;
}
/* Add a black background color to the top navigation */
.topnav {
  background-color: #171310;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #945434;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #d2a057;
  color: #171310;
}

/* Add a color to the active/current link */
.topnav .active {
  background-color: #945434;
  color: #d2a057;
}
.centered {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}