body {
	background-color:black;
}

h1 {
padding-top: 20px;	
color: #ff0000;
}

header, footer {
  padding: 10px;
  color: white;
  background-color: black;
}

section {
  margin: 5px;
  padding: 10px;
  background-color: lightblue;
}

section::before {
	height:100px;
}

article {
  margin: 5px;
  padding: 10px;
  background-color: white;
}

nav {
	position: fixed; /* Set the navbar to fixed position */
	top: 0; /* Position the navbar at the top of the page */
	left: 0;
	width: 100%; /* Full width */
	background-color: black;
    color:#ffffff;
}

nav a {
  float: left;
  display: block;
  color: red;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav a:hover {
  background: #ddd;
  color: black;
}

/* Change background on mouse-over */
.navbar a:hover {
  background: #ddd;
  color: black;
}

.main {
	margin-top:30px;
}	

.zdog-canvas {
  background: #fff;
  cursor: move;
}