body {
  font-family: sans-serif;
  text-align: center;
  padding: 50px;
  margin: 0;
}

/* Page-specific styles */
body.home {
  background-color: #eaffea;   /* Light green */
}

body.upload {
  background-color: #f0f8ff;   /* Light blue */
}

body.download {
  background-color: #fff8dc;   /* Cornsilk / soft yellow */
}

body.contact {
  background-color: #f5f5f5;   /* Light gray */
}

body.links {
  background-color: #f3e5f5;   /* Lavender */
}
/* Clean up the download list */
.download ul {
  list-style-type: none;      /* Removes the bullet points */
  padding: 0;                 /* Removes extra indent */
  text-align: left;           /* Left-aligns the text */
  display: inline-block;      /* Keeps it centered with the page */
}


/* Make it responsive on phones */
@media (max-width: 600px) {
  body {
    padding: 20px;
    font-size: 16px;
  	text-align: center;
  }
  h1 {
  	font-size: 24px;
  	line-height: 1.2;
  	word-wrap: break-word;
	}

  p {
    font-size: 16px;
  }
  nav a {
    display: block;
    width: 100%
    text-align: center;
  }
}

  div, nav, .container {
    width: 100%;
    box-sizing: border-box;
  }

  a {
    display: block;
    margin: 10px 0;
    font-size: 18px;
  }
}

nav a {
  margin: 5px;
  padding: 8px 12px;
  text-decoration: none;
  display: inline-block;
  background-color: #333;
  color: white;
  border-radius: 4px;
}

@media (max-width: 600px) {
  nav a {
    display: block;
    width: 100%;
    text-align: center;
  }
}
