* {
  box-sizing: border-box;
}

body {
  font-family: Arial Regular, sans-serif;
}

/* Style the header */
header {
  background-color: #000000;
  padding: 20px;
  font-size: 35px;
  color: white;
}

h1 {
  text-align: left;
}

/* Create two columns/boxes that floats next to each other */
nav {
  float: left;
  width: 30%;
  background: #FFFFFF;
  font-size: 13px;
  padding: 20px;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding-left: 20px;
}

a:link {
  color: blue;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: purple;
  background-color: transparent;
  text-decoration: underline;
}

article {
  float: left;
  padding: 20px;
  width: 70%;
  font-size: 13px;
  background-color: #FFFFFF;
}

/* Clear floats after the columns */
section:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  background-color: #F0AB00;
  padding: 20px;
  position: fixed;
  left: 15;
  bottom: 0;
  width: 100%;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
  nav,
  article {
    width: 100%;
    height: auto;
  } 
}

.responsive-image {
  max-width: 100%;
  height: auto;
}

.img-container{
  text-align: left;
}

.h1{
  align-self:center;
}