/* Project 1 styles
Author: Your Name
File: styles.css
*/

body {
  margin: 10px;
  font-family: Arial, sans-serif;
  background-color: #fbfbfb;
  color: #222;
}

header h1 {
  text-align: center;
  margin: 0.2em 0;
}

/* center nav and style links */
nav {
  text-align: center;
  margin: 0.5em 0 1em 0;
}

nav a {
  display: inline-block;
  margin: 0 0.8em;
  text-decoration: none;
  color: #2b2b2b;
  font-weight: bold;
}

/* main content layout */
main {
  max-width: 900px;
  margin: 0 auto;
}

/* center footer */
footer {
  text-align: center;
  margin-top: 2em;
  font-size: 0.95em;
  color: #333;
}

/* figure example */
figure {
  margin: 1em auto;
  text-align: center;
  max-width: 600px;
}

figure img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* small responsive tweaks */
@media (max-width: 600px) {
  nav a { display: block; margin: 0.25em 0; }
}
