* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0 5%;
  font-family: Arial, Helvetica, sans-serif;
}
.content img{
  width: 100%;
}
/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #8bc34a;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
/* Change color on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}
/* Style the content */
.content {
    background-color: #f7f7f7;
    padding: 10px;
}
/* Style the footer */
.footer {
    background-color: #8BC34A;
    padding: 10px;
}