body {
	font-family: sans-serif, Times;
	margin: 0px;
}

.devlog {
	margin: auto;
	width: 50%;
	margin-bottom: 20px;
	border: 3px solid;
	border-radius: 5px;
}

p {
	padding-left: 10px;
	font-size: 20px;
}

li {
	font-size: 20px;
}

/**** NAV BAR *****/

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
  margin: 0px 0px 20px 0px;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}