* {
  box-sizing: border-box;
  font-family: Trebuchet MS; /*Arial, Helvetica, sans-serif; */
}

body {
  margin: 0;
  font-family: Trebuchet MS; /*Arial, Helvetica, sans-serif;*/
  color: white;
  background-color: black;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: black;
}

/* Style the topnav links */
.topnav a {
  float: right;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  background-color: black;
}

/* Change color on hover */
.topnav a:hover {
  background-color: red;
  color: white;
}
/* Change color on active page */

.topnav a.active {
	background-color: red;
	color: white;
	
}

/* Style the content */
.content {
  background-color: black;
  padding: 10px;
  
}

/* Style the footer */
.footer {
  background-color: red;
  padding: 10px;
}

/* image allign and text */
figure.item {
    /* To correctly align image, regardless of content height: */
    vertical-align: top;
    display: inline-block;
    /* To horizontally center images and caption */
    text-align: center;
    /* The width of the container also implies margin around the images. */
    width: 350px;
}
img {
    width: ;
    height: ;
    background-color: ;
}
.caption {
    /* Make the caption a block so it occupies its own line. */
    display: block;
}


